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();
}
};
但它不爲我工作。
嗨tcruz,感謝您的答覆。我想發佈關聯的填充收集字段,我也使用了該代碼。但是,這不會激發關聯的收集。 – Aravinth