jQuery.ajax 转换器未调用

发布于 2025-01-07 10:34:33 字数 612 浏览 0 评论 0原文

我在使用 jQuery.ajax 转换器时遇到问题 - 我无法调用我的转换器。

我有这个 jQuery AJAX 代码(针对问题进行了简化):

    $.ajax({
    url: "http://myurl/myservice",
    dataType: "JSONP",
    cache: false,
    success: function (data, textStatus, jqXHR) { /* do stuff */ },
    error: function (jqXHR, textStatus, errorThrown) { /* do stuff */ },
    timeout: 5000,
    converters: { "JSONP": myConversionFunction }
});

当我使用此代码时,转换器函数 myConversionFunction 不会被调用。我想使用转换器来转换响应中的日期,如其他问题所示,但无法触发它。

我使用 fiddler 检查了响应,它是 JSONP,内容类型为“application/x-javascript”。

有什么想法我做错了吗?

谢谢, 克里斯.

I'm having trouble with jQuery.ajax converters - I can't get my converter to be called.

I've got this jQuery AJAX code (simplified for the question) :

    $.ajax({
    url: "http://myurl/myservice",
    dataType: "JSONP",
    cache: false,
    success: function (data, textStatus, jqXHR) { /* do stuff */ },
    error: function (jqXHR, textStatus, errorThrown) { /* do stuff */ },
    timeout: 5000,
    converters: { "JSONP": myConversionFunction }
});

When I use this code, the converter function myConversionFunction isn't being called. I want to use the converter to convert dates in the response as show in other SO questions but just can't get it firing.

Using fiddler I've checked the response and it is JSONP, with content type "application/x-javascript".

Any ideas what I'm doing wrong?

Thanks,
Chris.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浪荡不羁 2025-01-14 10:34:33

我认为你不能覆盖 jQuery 的默认转换器,例如 json。而是引入您自己的转换器(并在说明符中包含 text ,因为在本例中,它是从文本到输出的转换):

$.ajax({
    url: "http://myurl/myservice",
    dataType: "jsonp myConversion",
    cache: false,
    success: function (data, textStatus, jqXHR) { /* do stuff */ },
    error: function (jqXHR, textStatus, errorThrown) { /* do stuff */ },
    timeout: 5000,
    converters: {
        "text myConversion": function(value) {
            console.log("pre-processing...");
            /* do stuff */
            return value;
        }
    }
});

I think you can't overwrite jQuery's default converters like json. Introduce your own converter instead (and include text in your specifier, as in this case it's a conversion from text to your output):

$.ajax({
    url: "http://myurl/myservice",
    dataType: "jsonp myConversion",
    cache: false,
    success: function (data, textStatus, jqXHR) { /* do stuff */ },
    error: function (jqXHR, textStatus, errorThrown) { /* do stuff */ },
    timeout: 5000,
    converters: {
        "text myConversion": function(value) {
            console.log("pre-processing...");
            /* do stuff */
            return value;
        }
    }
});

做个少女永远怀春 2025-01-14 10:34:33

我使用这样的代码来管理 asp.net 的“d”数据:

$.ajaxSetup({
    data: "{}",
    dataType: "jsonp",
    type: "POST",
    contentType: "application/json",
    converters:
        {
            "json jsonp": function(msg)
            {
                return msg.hasOwnProperty('d') ? msg.d : msg;
            }
        },
    error: function(xhr, textStatus, errorThrown)
    {
        var errorMessage = "Ajax error: " + this.url + " : " + textStatus + " : " + errorThrown + " : " + xhr.statusText +
                " : " + xhr.status;
        if (xhr.status != "0" || errorThrown != "abort")
        {
            alert(errorMessage);
        }
    }
});

也许您需要将其设置为小写,例如:

converters:
    {
        "json jsonp": function(msg)
        {
            return yourfunction(msg);
         }
    }

I use code like this to manage the 'd' data of asp.net:

$.ajaxSetup({
    data: "{}",
    dataType: "jsonp",
    type: "POST",
    contentType: "application/json",
    converters:
        {
            "json jsonp": function(msg)
            {
                return msg.hasOwnProperty('d') ? msg.d : msg;
            }
        },
    error: function(xhr, textStatus, errorThrown)
    {
        var errorMessage = "Ajax error: " + this.url + " : " + textStatus + " : " + errorThrown + " : " + xhr.statusText +
                " : " + xhr.status;
        if (xhr.status != "0" || errorThrown != "abort")
        {
            alert(errorMessage);
        }
    }
});

perhaps you need to make it lower case like:

converters:
    {
        "json jsonp": function(msg)
        {
            return yourfunction(msg);
         }
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文