我正在进行AJAX CORS调用。 这是电话会议的片段:
var jsonGiven = {"jsonGiven": {"username":"John", "points":"10"}};
$.ajax({
method: 'POST',
url: urlAPI,
data: jsonGiven,
crossDomain: true,
dataType: 'jsonp',
contentType: 'application/jsonp; charset=utf-8',
beforeSend: function(d1){ },
complete: function(d2){ },
success: function(d3){ },
error: function(err){ }
});
我有以下问题:
Request Method:GET
时,来电标头为POST
。{"status": "success"}
之后,我的脚本在error: function(err){ }
内完成,在控制台中返回以下错误:
Uncaught SyntaxError: Unexpected token :