accountsGoogle发布个人资料图片

时间:2017-06-14 04:40:47

标签: meteor

在Meteor中我使用accountsGoogle包。我正在尝试在我的网站上使用Google个人资料图片,但只要删除我需要发布的autopublish个包,就可以订阅用户集合的google部分。我该怎么做呢?

Meteor.publish('users', function(){
    return Meteor.user.services.google.find({});
});

1 个答案:

答案 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);
})