0

您好,我正在使用 arangojs,创建了一个数据库,将数据添加到集合beusers中。

现在我想读取添加的数据。在 ArangoDB 中,我可以使用查询来做到这一点

FOR user IN beusers
FILTER user.password == '3670747394' && user.email == '3817128089'
RETURN user

正在做

const user = await usedDB.parse(aql`
        FOR user IN ${usersCol.name}
        FILTER user.password == ${hashedPassword} && user.email == ${hashedEmail}
        RETURN user
`)
console.log(user)

在 arangojs 我得到

{
  error: false,
  code: 200,
  parsed: true,
  collections: [],
  bindVars: [ 'value2', 'value0', 'value1' ],
  ast: [ { type: 'root', subNodes: [Array] } ]
}

自述文件中的示例只让我到目前为止。

我错过了什么?如何读取数据?

4

2 回答 2

1

您想要使用Database.query()来获取游标 ( ArrayCursor),然后想要返回游标结果列表中的值(例如使用ArrayCursor.all())。

所以代码看起来像这样:

const cursor = await usedDB.query(aql`
  FOR user IN ${usersCol.name}
    FILTER user.password == ${hashedPassword} && user.email == ${hashedEmail}
    RETURN user
`);
console.log(await cursor.all()); // returns array of users
于 2021-06-16T08:34:46.390 回答
0

看来我只是在那里使用了错误的方法。正确的应该是:

const user = await db.executeTransaction(
    {
      read: ['beusers'],
    },
    `
      function() {
        // This code will be executed inside ArangoDB!
        const { query } = require("@arangodb");
        return query\`
            FOR user IN ${col.name}
            FILTER user.password == "${stringHash(
              passedUser.password,
            )}" && user.email == "${stringHash(passedUser.email)}"
            RETURN user
          \`.toArray()[0];
      }
    `,
  )
于 2021-04-30T18:12:10.340 回答