我是 REST API 的新手**(这真的是我的 REST 问题吗?)**
我想通过使用 Cypher 从 neo4js 获取所有节点
START n = node(*)
return n;
如果我使用 jquery ajax POST 或 GET 方法,我该如何使用
在文档中它推荐
POST http://localhost:7474/db/data/cypher
Accept: application/json
Content-Type: application/json
在我的代码中我写
$.ajax({
type:"POST",
url: "http://localhost:7474/db/data/cypher",
accepts: "application/json",
dataType:"json",
contentType:"application/json",
data:{
"query" : "start n = node(*) return n",
"params" : {}
},
success: function(data, textStatus, jqXHR){
alert(textStatus);
},
error:function(jqXHR, textStatus, errorThrown){
alert(textStatus);
}
});//end of placelist ajax
我的问题是什么?错误警报如下