我正在使用以下代码段将OP的头像链接插入帖子。
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的头像链接。
或者,有没有更好的方法呢?