gpt4 book ai didi

node.js - 使用node-neo4j读取 Node 时出现问题以及使用neo4j-shell进行调试技巧

转载 作者:太空宇宙 更新时间:2023-11-03 23:40:08 25 4
gpt4 key购买 nike

我是 Neo4J 新手。到目前为止,我成功安装并启动了 Neo4J 服务器,并通过运行命令 neo4j status 对其进行了检查。

通过使用node-neo4j驱动程序向数据库添加和更新 Node 。

在我的 Nodejs 服务器中,我创建一个新数据库:

db = new neo4j("http://127.0.0.1:7474");

接下来,我插入一个新 Node :

db.insertNode( {"name": "Darth Vader","sex": "male"}, (err, node) ->
if err then throw err
console.log "Insert node"
console.log node
)

插入新 Node 时我没有遇到任何错误。但是,当我尝试读取此 Node 时

db.readNode( {"name": "Darth Vader"}, (err, node) ->
if err then throw err; # 48th line of server.js
console.log "Read node"
console.log node
)

ReadNode 函数在第 48 行抛出以下异常(您可以在上面给出的代码片段中找到第 48 行)。

server.js:48
throw err;
^
Error: HTTP Error 500 occurred while reading a node.
at node_modules/node-neo4j/main.js:151:15
at Request.callback (node_modules/node-neo4j/node_modules/superagent/lib/node/index.js:656:3)
at Request.<anonymous> (node_modules/node-neo4j/node_modules/superagent/lib/node/index.js:131:10)
at Request.emit (events.js:95:17)
at IncomingMessage.<anonymous> (node_modules/node-neo4j/node_modules/superagent/lib/node/index.js:802:12)
at IncomingMessage.emit (events.js:117:20)
at _stream_readable.js:929:16
at process._tickCallback (node.js:419:13)

然后,我尝试通过检查数据库来调试我的进程,并尝试使用 neo4j-shell 并在命令行上输入 dbinfo,我希望看到我的数据库和已插入的 Darth Vader Node 。

但是,dbinfo 根本不返回任何内容!

如何使用 neo4j-shell 找到我的数据库以及该数据库中的 Node ?

如何确保我成功插入 Node ?如何读取已经插入的 Node ?

你有什么想法吗?

提前谢谢您!

最佳答案

为了说清楚:有两个node-neo4j版本:

https://github.com/philippkueng/node-neo4j

https://github.com/thingdom/node-neo4j

您使用的是 philippkueng 版本:db.readNode 仅适用于 nodeId。我认为您应该使用带有 cypher 语句的 db.cypherQuery() 来代替查询 neo4j 数据库。

例如:

db.cypherQuery('MATCH (n {name: "Darth Vader"}) RETURN n', 
function(err, result){
if(err) throw err;

console.log(result.data); // delivers an array of query results
console.log(result.columns); // delivers an array of names of objects getting returned
});

您是否想在没有 Cypher 的情况下使用标签和索引来查找您可以使用的 Node :

// add Darth Vader with the label Person
db.insertNode( {name: 'Darth Vader',sex: 'male'}, 'Person',
function(err, node) {})

db.readNodesWithLabelsAndProperties('Person', {name: 'Darth Vader'},
function (err, result) {})

为了进行调试,@codewithcheese 已经提到使用 Neo4j 浏览器:

http://localhost:7474

关于node.js - 使用node-neo4j读取 Node 时出现问题以及使用neo4j-shell进行调试技巧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25515455/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com