2015-12-29 53 views
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); 
    }); 

回答

0

在當前帆/水線關係的實現,你不能用一個一對多的相關領域進行篩選。您需要在find完成後過濾結果。