我使用 neo4j REST API、JS 和 JQuery 创建了简单的 Web 应用程序。我可以使用以下方法创建新节点$post
:
$.post("http://localhost:7474/db/data/node",
{
"name":data[i].name,
"phone":data[i].phone
},
function(jsonData) {
newlyCreated = jsonData.self;
},
'json');
它工作,新节点被创建并出现在数据库中。
不幸的是,当我尝试使用创建索引时$post
,这种语法不起作用:
$.post("http://localhost:7474/db/data/index/node",{"name":"phone"},function(indexInfo) {
console.log(indexInfo);
}, 'json');
当我尝试使用 neo4j http 控制台时:
POST http://localhost:7474/db/data/index/node/ {"name": "phone"}
它工作正常索引已创建。
有什么建议为什么$.post
在这种情况下不能正常工作?