我觉得这里有点傻。我的 ajax 调用每次都运行错误:函数。我知道数据以 JSON 形式返回,但我已将数据类型设为 jsonp 以允许跨源内容。我不认为我可以做任何不同的事情,除非我忘记了一些明显的事情。请-这有什么问题:
function sartleApi(type,endpoint,object,callback){
$.ajax({
contentType: "application/json",
dataType: 'jsonp',
type:type,
data:object,
url:"http://dev.sartle.com/includes/ajax_reviewcomment.php?rid=1178",
success:function(data){
callback(data);
},
error: function (xhr, textStatus, errorThrown) {
alert(xhr.statusText);
alert(xhr.responseText);
alert(xhr.status);
alert(errorThrown);
}
});
}