2015-06-20 49 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(); 

    } 
}; 

但它不为我工作。

回答