我使用了jsonp并成功调用了我的webapi方法,但我有 我希望从目标服务器返回值
的问题
$.ajax({
url: 'http://hub.charsooq.co/api/Order/putorder', //
type : "GET", // type of action POST || GET
dataType : 'jsonp', // data type
data : $(this).serializeArray(), // post data || get data
crossDomain: true,
contentType: "application/json; charset=utf-8",
success : function(result) {
alert(result);
},
error: function(xhr, resp, text) {
console.log(xhr, resp, text);
}
})
});
现在我打电话给我的方法之后我想从Api MEthod返回值,但我不能,任何人都可以帮助我吗?
"parsererror" Error: jQuery112105916533075988908_1496290916990 was not called