MeteorJS:用户集合如何公开新字段

时间:2015-04-01 05:30:15

标签: javascript node.js meteor meteorite

我在用户集合中添加了新字段,但是当我在客户端Meteor.user()。cart(cart是我的新字段)中访问它时。它未定义。如何公开新的字段(购物车)以便它可以在客户端访问?

1 个答案:

答案 0 :(得分:4)

最简单的方法是添加null发布商,该发布商将自动发送数据而无需订阅。请务必将字段限制为仅需要的字段。

Meteor.publish(null, function() {
  return Meteor.users.find(this.userId, {fields: {cart: 1}});
});