标签: javascript node.js sequelize.js
我的模型类是:Post,Comment(Post与Comment有一对多关系)。
Post
Comment
我想查询帖子的评论数。因此,我要查询get Post并加入Comment,但是我无法得到joind注释的完整实体长度。
我如何获得加入实体的数量?我正在考虑使用findAndCountAll方法,但这是在获取Post的数量。
findAndCountAll