2

尝试从 Node JS 应用程序查询本地运行的 Stardog 数据库。

该查询在 Stardog 界面中运行时返回结果。

在 Node 中运行它时,返回 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);
});
4

3 回答 3

1

Stardog.js 的 Connection 对象接受端点、用户名、密码和元对象,而您有一个auth对象。您可以在https://github.com/stardog-union/stardog.js#connectionoptions的文档中看到这一点

于 2018-02-20T18:37:37.063 回答
1

您没有在承诺中处理错误。

query.execute(conn, 'hospital_db', q, {
}).then(({ body }) => {
  console.log(body.results.bindings);
}).catch((err) => {
  console.log(err);
})
于 2018-02-20T17:43:00.130 回答
1

你应该在你的承诺链中添加一个捕获。

 query.execute(conn, 'hospital_db', q, {
    }).then(({ body }) => {
        console.log(body.results.bindings);
    }).catch( (err) => {
        console.log(err);
    })
于 2018-02-20T17:49:04.263 回答