2017-01-12 2 views

答えて

0
Meteor.publish('posts', function(options) { 
    check(options, { 
    sort: Object, 
    limit: Number 
    }); 
    return Posts.find({userId:selected_user_id}, options); 
}); 

あなたはちょうどあなたが通知に行うと同じように、あなたのポストセレクタでそれを配置する必要があり

関連する問題