将curl命令转换为AJAX

时间:2016-06-09 23:27:30

标签: javascript jquery ajax curl

我正在尝试进行POST API调用,其格式如下:

 curl --data-urlencode content="some string which can be content of RDF file" http://rdf-translator.appspot.com/convert/detect/json-ld/content

我使用以下代码:

 $.ajax({
        url : "http://localhost/dia/data/CRUD.json",
        dataType: "json",
        success : function (result) {
            console.log(result);
        }
});

我收到以下错误消息:[enter image description here 1

我确信我错过了一些东西。我初学者,我愿意向你学习。

API调用的正确AJAX代码是什么?谢谢你的帮助。

0 个答案:

没有答案