我目前正在使用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);
});
答案 0 :(得分:0)
事实证明,此时req.account.id
实际上是未定义的。我的输入数据有点混乱