如何将Curl请求调用转换为Ajax调用?

时间:2018-06-12 11:40:09

标签: jquery json ajax api curl

我正在使用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){

});

0 个答案:

没有答案