2015-06-20 231 views
1

我完全陌生於帆聯盟。 我想在關聯的集合中發佈(publishCreate和publishUpdate)套接字事件。publishcreate,publishupdate無法在sailsjs中的關聯集合上工作

我得到了Sails publish(Update) system does not propagate to associations 我的代碼一種解決方案是像

module.exports = { 

    attributes: { 
    title: 'string', 
    owner:{ 
     model:'user' 
    } 
    }, 

    afterUpdate: function(post, cb){ 

    User.publishUpdate(post.owner, {/* props you want to send */}); 
    cb(); 

    } 
}; 

但它不爲我工作。

回答