mysql错误5154:无效占位符(node.js xdevapi connector)

tvmytwxo  于 2021-06-23  发布在  Mysql
关注(0)|答案(1)|浏览(368)

我目前正在使用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);
    });
6tqwzwtp

6tqwzwtp1#

事实证明 req.account.id 在这一点上还没有定义。我的输入数据有点乱

相关问题