我有一个简单的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
然后,当我展开它时,我会看到我希望看到的数据。但是,它永远不会成功回电。
关于为什么的任何想法?
答案 0 :(得分:-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);
答案 1 :(得分:-1)
你有'jsonLatLon'作为你的数据源。您是否已使用要传递的数据声明该变量?
否则将无法返回。