gpt4 book ai didi

javascript - 是否有预先发送的 Javascript promise ?

转载 作者:行者123 更新时间:2023-11-30 11:18:17 25 4
gpt4 key购买 nike

我正在使用脚本将数据发送到谷歌驱动器。该脚本有两个函数来检测请求何时发送。是否有替代 jquery beforesend 的功能?

检测请求正在发送?

fetch(scriptURL, { method: 'POST', body: new FormData(form)})  
.then((response) => {
alertify.success("Sent succesfully");
})
.catch((err) => {
alertify.error("Failed to send");
});

最佳答案

不,没有,但您可以将它包装在您自己的函数中,随处使用。

function myFetch() {
console.log('about to send');
return fetch.apply(this, arguments);
}

myFetch('/echo').then(e => console.log(e));

关于javascript - 是否有预先发送的 Javascript promise ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50704104/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com