我有一个简单的 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
然后当我展开它时,我会看到我希望看到的数据。但是,它永远不会成功回调。
关于为什么的任何想法?