我正在尝试进行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);
}
});
我收到以下错误消息:[ 1
我确信我错过了一些东西。我初学者,我愿意向你学习。
API调用的正确AJAX代码是什么?谢谢你的帮助。