-1

我有一个简单的 jQuery 请求,如下所示:

    $.ajax({
        type : "POST",
        contentType : "application/json",
        url : 'http://localhost:8080/OTM/resteasy/location/coordinates/create',
        data : jsonLatLon,
        dataType : "json",
        success : function(result){
            alert(result);
        },
        error: function(err){
            alert(err);
        }
    });

在萤火虫中,当我查看控制台并看到以下内容时: POST:http://localhost:8080/OTM/resteasy/location/coordinates/create 然后当我展开它时,我会看到我希望看到的数据。但是,它永远不会成功回调。

关于为什么的任何想法?

4

2 回答 2

-1
in alert you cant see json if you want to see 

then see in console you will see property of objects 

your response come in alert like 

alert(result.property);
于 2013-08-21T15:32:13.070 回答
-1

你有 'jsonLatLon' 作为你的数据源。您是否使用要传递的数据声明了该变量?

否则就没有任何回报。

于 2013-08-21T15:34:25.713 回答