0
我正在嘗試獲取我的所有帖子的評論哪些評論數大於0.我正在添加查找和填充位置,但沒有任何工作。Sails.js填充篩選器
Post模型:
module.exports = {
attributes: {
user: {
model: 'user'
},
comments: {
collection: 'comment',
via: 'post'
}
};
PostController中:
Post
.find({comments: {'>': 0}, user: me})
.populate('comments')
.exec(function(err, comments){
res.json(comments);
});