MySQL错误5154:无效的占位符(Node.js XDevAPI连接器)

时间:2018-08-07 00:01:48

标签: mysql node.js nosql

我目前正在使用MySQL服务器(版本8.0.12),并使用支持XDevAPI和NoSQL的官方Node.js MySQL连接器进行连接。我正在尝试从数据库中提取一些博客文章,但收到错误5154。

这是我的代码:

// Data used
const postsPerPage: number;
const start: number;

let results: BlogPost[] = [];

await blogPosts
    .find('accountID = :accountID')
    .bind('accountID', req.account.id)
    .sort('posted ASC')
    .limit(postsPerPage + 1)
    .offset(start)
    .execute(post => {
        results.push(post);
    });

1 个答案:

答案 0 :(得分:0)

事实证明,此时req.account.id实际上是未定义的。我的输入数据有点混乱