0

我正在尝试 .ajax 访问返回对象列表的 URL,我在 spring 中使用 jacksonJsonView 以在浏览器中返回 json。但是当我尝试这段代码时,它永远不会成功,但错误警报显示 textstatus 为“parseerror”。警报如下所示:'status=parsererror,error=jQuery15109695890768120119_1357924928198 未被调用'

$(function() {  
$("#tags").autocomplete({
source: function( request, response ) {
    $.ajax({
        url: 'http://localhost:8181/jquery/api/states/regex?stateName='+request.term,
        method: 'GET',
        dataType: 'jsonp',
        success: function(json) {
        alert("test");

        },
        error: function(httpRequest, textStatus, errorThrown) { 
        alert("status=" + textStatus + ",error=" + errorThrown);
        }
    });
}
})

API 返回如下内容:

[

    {
        "id": 12,
        "stateName": "Vermont",
        "intPtLon": -72.673354,
        "intPtLat": 44.0605475,
        "stUsps": "VT"
    },
    {
        "id": 20,
        "stateName": "Virginia",
        "intPtLon": -78.6681938,
        "intPtLat": 37.5222512,
        "stUsps": "VA"
    }

]

添加以下行解决了这个问题,它在 IE 中运行良好,在 firefox 中运行良好

4

1 回答 1

3

你应该改变

dataType: 'jsonp',

简单到

dataType: 'json',

或者,如果你真的需要 JSONP 并且不能使用 JSON - 你应该从服务器端的请求中获取回调参数并像这样包装响应:

请求["回调"] + "(" + string_with_json_response + ")";

所以,在结果中你会得到类似的东西:

jQuery15109695890768120119_1357924928198('{"response":"val"}');
于 2013-01-11T17:36:21.237 回答