publishcreate,publishupdate不适用于sailsjs

时间:2015-06-20 04:50:58

标签: associations sails.js sails-mongo

我是帆船协会的新手。         我想在关联的集合中发布(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();

  }
};

但它对我不起作用。

1 个答案:

答案 0 :(得分:0)

您必须使用.subscribe()方法订阅此模型才能接收邮件,请查看文档:{​​{3}}