我目前正在使用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条答案
按热度按时间6tqwzwtp1#
事实证明
req.account.id
在这一点上还没有定义。我的输入数据有点乱