私のUserコレクションには、という配列がありsynonym_ids
ます。
これをクライアントに表示する最も簡単な方法は何ですか?
サーバーから以下を公開してから、クライアントからサブスクライブしてみました。ただし、次のエラーが発生します。
Internal exception while starting subscription 0ea473b6-8be4-43ec-8a56-988409a4b58a Error: Meteor.userId can only be invoked in method calls. Use this.userId in publish functions.
#server
Meteor.publish 'synonym_ids', () ->
if Meteor.userId()
return Meteor.users.findOne({_id: Meteor.userId()}).synonym_ids
#client
Meteor.autosubscribe () ->
Meteor.subscribe 'synonym_ids'