限られた量のデータのみをクライアントに公開したい。
私はこのようにそれをやろうとしました:
# server
Meteor.publish('users', ->
Meteor.users.find({},
fields:
services: 0
)
)
ただし、クライアントは引き続きオブジェクト全体を受け取ります。
# client
Meteor.startup( ->
Meteor.subscribe('users')
)
# ...
# in another function
Meteor.users.find().observe( ->
changed: (updated) ->
console.log updated
)
私は何を間違っていますか?