我几乎复制了example并调整了数据库查询。我不明白为什么无法识别驾驶员?
版本: 节点:v11.13.0 neo4j-driver:“ ^ 1.7.5”
我收到错误消息:
var driver = neo4j.v1.driver(
^
TypeError: Cannot read property 'driver' of undefined
我的代码:
var neo4j = require('neo4j-driver').v1;
var driver = neo4j.v1.driver(
'bolt://localhost:7687',
neo4j.auth.basic('neo4j', 'Neo4j')
)
var session = driver.session()
session
.run('MATCH (n:Person) return n', {
//nameParam: 'Alice'
})
.subscribe({
onNext: function(record) {
console.log(record.get('n'))
},
onCompleted: function() {
session.close()
},
onError: function(error) {
console.log(error)
}
})
答案 0 :(得分:1)
您可能打算这样做:
var neo4j = require('neo4j-driver').v1;
var driver = neo4j.driver(
...
或者,如果由于某种原因您希望每次使用时都能明确指定库版本,请执行以下操作:
var neo4j = require('neo4j-driver');
var driver = neo4j.v1.driver(
...
答案 1 :(得分:0)
他们的文档似乎搞砸了,我遇到了完全相同的问题。
删除v1
即可。不确定是否默认使用其他版本的驱动程序...
let config = require("./config")[env]
const uri = 'bolt://localhost:7687'
const neo4j = require('neo4j-driver');
const driver = neo4j.driver(uri, neo4j.auth.basic(config.username, config.password));
FWIW定义配置文件的方式也被破坏。节点启动几乎是关闭的。