我正在尝试构建亵渎过滤 api。api 的响应以 JSON 形式出现。我正在使用以下代码来访问 api。但是,它显示了一些我无法弄清楚的错误。
这是我的代码..
$.ajax({
dataType: 'jsonp',
jsonp: 'callback',
url: 'http://www.employeeexperts.com/Profanity/index.php/rest/check/Good Morning',
success: function(data) {
console.log('success');
console.log(JSON.stringify(data));
},
error: function (header, status, error) {
console.log('ajax answer post returned error ' + header + ' ' + status + ' ' + error);
}
});
问候