我是帆船协会的新手。 我想在关联的集合中发布(publishCreate和publishUpdate)套接字事件。
我在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();
}
};
但它对我不起作用。
答案 0 :(得分:0)
您必须使用.subscribe()方法订阅此模型才能接收邮件,请查看文档:{{3}}