我正在使用Sentiment Analysis API,它需要curl请求来获取JSON对象。
如何使用AJAX完成这项工作?
这是卷曲请求:
$ curl -d "text=great" http://text-processing.com/api/sentiment/
这就是我的尝试:
$.ajax("http://text-processing.com/api/sentiment/", {
type: "POST",
data: JSON.stringify({ text: "Hello world!" }),
contentType: "application/json",
}).done(function(data){
alert('done');
}).fail(function(xhr, status, error){
});