如何将ajax转换为GM_xmlHttpRequest?

发布于 2025-01-16 20:30:52 字数 586 浏览 0 评论 0原文

我正在尝试将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文