3

我已经使用 arangojs 几个月了,最近我的一些代码开始失败,这些代码以前可以工作,关于在使用模板字符串和 aqlQuery 时将变量用作集合名称。

我在 Windows 10 上使用 Node.js 4.4.0。

此示例代码显示错误:

// Issue with template string and arangodb with collection names
var arango = require('arangojs');
var aqlQuery = require('arangojs').aqlQuery;
var db = new arango('http://127.0.0.1:8529');

var collectionName = 'sampleCollection';

// Connect to _system
db.useDatabase('_system');

var sampleText = "Testing Only";

/* Add a record to the collection, using template string with collectionName
 * If I use ${collectionName} I get the error code 400:
 * error: 'bind parameter \'bind parameter \'value1\' has an invalid value or type near 
 * \'RETURN NEW._key\n
 * \' at position 4:9\' has an invalid value or type (while parsing)',
 *
 * If I write out the collection name, or use a normal db.query style query without using 
 * aqlQuery and template strings and pass the table name as @collectionName, then it works
 * fine.
 */
db.query(aqlQuery`
    INSERT { "something": ${sampleText} }
    IN ${collectionName}
    RETURN NEW._key
`).then(cursor =>
  cursor.all()
).then(vals => {
  console.log(`Created a new document with a _key of ${vals[0]}`)
}).catch(err => {
  console.log(err)
});

我已经在一个干净的 npm 安装上测试了这个,只有 arangojs 4.3.0 和 Node 4.4.0 或 Node 5.5.0(使用 nodist)。

有没有其他人看到模板字符串中的集合名称有问题?

4

1 回答 1

8

arangojs 文档没有明确指出这一点,AQL 文档对此进行了掩饰,但集合绑定变量被特殊处理。当手动编写 AQL 查询时,这意味着您需要在它们的名称前面加上@in 前缀,bindVars并相应地用@@前缀而不是通常的. 来引用它们@

因为无法识别字符串是指字符串值还是集合名称,所以在 aqlQuery 中使用集合作为绑定变量的正确方法是传入 arangojs 集合对象而不是字符串本身,例如:

const collection = db.collection(collectionName);
db.query(aqlQuery`
  INSERT { "something": ${sampleText} }
  IN ${collection}
  RETURN NEW._key
`)

如果将 aqlQuery 模板的输出记录到控制台,您将看到查询正确插入了带有@@前缀的引用,并且绑定变量包含@前缀变量,其值是集合的名称(而不是您传入的集合对象)。

于 2016-04-21T08:20:47.543 回答