使用Meteor和MongoDB获取头像

时间:2015-03-09 04:53:21

标签: javascript mongodb meteor

我正在使用以下代码段将OP的头像链接插入帖子。

posts.js(部分内容)

var post = _.extend(postAttributes, {
        userId: user._id, 
        author: user.username || user.profile.name, 
        submitted: new Date(),
        authorAvatar: user.profile.avatar,
        commentsCount: 0,
        answersCount:0,
        upvoters: [], 
        votes: 0
    });

唯一的问题是,如果OP改变了他/她的头像,那么在帖子上显示的头像不会改变。

所以,我想知道我是否可以直接从template.helpers访问OP的头像链接。

或者,有没有更好的方法呢?

0 个答案:

没有答案