使用NodeJS查询Stardog时出现错误

时间:2018-02-20 17:38:09

标签: node.js stardog

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

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

在Node中运行时,会出现一些东西,它会返回null并返回错误。

(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);
});

3 个答案:

答案 0 :(得分:1)

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

query.execute(conn, 'hospital_db', q, {
}).then(({ body }) => {
  console.log(body.results.bindings);
}).catch((err) => {
  console.log(err);
})

答案 1 :(得分:1)

您应该在承诺链中添加一个catch。

 query.execute(conn, 'hospital_db', q, {
    }).then(({ body }) => {
        console.log(body.results.bindings);
    }).catch( (err) => {
        console.log(err);
    })

答案 2 :(得分:1)

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

的文档中看到这一点