标签: angularjs meteor
对流星开发不熟悉,你能帮我吗?
我正在发布
// server Meteor.publish("userData", function () { if (this.userId) { return Meteor.users.find({_id: this.userId}); } else { this.ready(); } });
在客户端如何获取已发布的用户数据?