使用 NodeJS 查询 Stardog 时出现 Promise 错误
Promise error when querying Stardog with NodeJS
正在尝试从 Node JS 应用程序查询本地 运行 Stardog 数据库。
在 Stardog 界面中 运行 时查询 returns 结果。
当 运行在 Node 中使用它时,某些东西会被 returns 为 null 的 promise 和一个错误弄乱。
(node:1248) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): TypeError: Cannot read property 'results' of null
(node:1248) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
我在 Node 中 运行 的代码是:
const { Connection, query } = require('stardog');
const conn = new Connection({
endpoint: 'http://localhost:5820',
auth: {
user: 'admin',
pass: 'admin'
}
});
var q = 'select distinct ?s where { ?s ?p ?o }'
query.execute(conn, 'hospital_db', q, {
}).then(({ body }) => {
console.log(body.results.bindings);
});
您没有处理 promise 中的错误。
query.execute(conn, 'hospital_db', q, {
}).then(({ body }) => {
console.log(body.results.bindings);
}).catch((err) => {
console.log(err);
})
你应该在你的承诺链中添加一个陷阱。
query.execute(conn, 'hospital_db', q, {
}).then(({ body }) => {
console.log(body.results.bindings);
}).catch( (err) => {
console.log(err);
})
Stardog.js 的连接对象接受端点、用户名、密码和元对象,而您有一个 auth
对象。您可以在 https://github.com/stardog-union/stardog.js#connectionoptions
的文档中看到这一点
正在尝试从 Node JS 应用程序查询本地 运行 Stardog 数据库。
在 Stardog 界面中 运行 时查询 returns 结果。
当 运行在 Node 中使用它时,某些东西会被 returns 为 null 的 promise 和一个错误弄乱。
(node:1248) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): TypeError: Cannot read property 'results' of null
(node:1248) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
我在 Node 中 运行 的代码是:
const { Connection, query } = require('stardog');
const conn = new Connection({
endpoint: 'http://localhost:5820',
auth: {
user: 'admin',
pass: 'admin'
}
});
var q = 'select distinct ?s where { ?s ?p ?o }'
query.execute(conn, 'hospital_db', q, {
}).then(({ body }) => {
console.log(body.results.bindings);
});
您没有处理 promise 中的错误。
query.execute(conn, 'hospital_db', q, {
}).then(({ body }) => {
console.log(body.results.bindings);
}).catch((err) => {
console.log(err);
})
你应该在你的承诺链中添加一个陷阱。
query.execute(conn, 'hospital_db', q, {
}).then(({ body }) => {
console.log(body.results.bindings);
}).catch( (err) => {
console.log(err);
})
Stardog.js 的连接对象接受端点、用户名、密码和元对象,而您有一个 auth
对象。您可以在 https://github.com/stardog-union/stardog.js#connectionoptions