在Meteor中我使用accountsGoogle
包。我正在尝试在我的网站上使用Google个人资料图片,但只要删除我需要发布的autopublish
个包,就可以订阅用户集合的google部分。我该怎么做呢?
Meteor.publish('users', function(){
return Meteor.user.services.google.find({});
});
答案 0 :(得分:1)
You could get the user document from the client-side using
Meteor.user()
Or if you really want to use a publication
Meteor.publish('users', function () {
return Meteor.users.find(this.userId);
})