如何将ajax转换为GM_xmlHttpRequest?
我正在尝试将 ajax 请求转换为 GM_xmlHttpRequest,但我找不到任何有关如何执行 jquery ajax beforeSend、成功、错误、完成的信息。
$.ajax({
url: url,
type: 'GET',
dataType: 'json',
timeout: 30000,
beforeSend: function(){
// some code
},
success: function(res) {
console.log(res);
},
error: function(res){
console.log("Failed to fetch data");
},
complete: function(res){
console.log("xhr completed");
// some code
}
});
我如何将其转换为 GM_xmlHttpRequest? 我发现的所有示例仅在 gm xhr 中使用 onload
。我怎样才能有成功、错误、完成?
I'm trying to translate the ajax request to GM_xmlHttpRequest, but I can't find any info on how to do the jquery ajax beforeSend, success, error, complete.
$.ajax({
url: url,
type: 'GET',
dataType: 'json',
timeout: 30000,
beforeSend: function(){
// some code
},
success: function(res) {
console.log(res);
},
error: function(res){
console.log("Failed to fetch data");
},
complete: function(res){
console.log("xhr completed");
// some code
}
});
How can I translate this to GM_xmlHttpRequest?
All examples I found use only onload
in the gm xhr. How can I have success, error, complete?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论