我在显示交易列表的页面上使用流星。交易文件如下所示:
{ payer: 'username1', payee: 'username2', amount: 100, date: someDate }
要显示这样的交易列表:
<ul class="recent-transactions">
{{#each transactions}}
<li>{{this.amount}} to {{this.payee}} from {{this.payer}}</li>
{{/each}}
</ul>
在帮助程序中,或者在以某种方式呈现模板之前,我想用我可以获得的实际用户文档替换payee
and属性,以便模板看起来像这样:payer
Meteor.users.findOne({ username: someUsername})
<ul class="recent-transactions">
{{#each transactions}}
<li>{{this.amount}} to {{this.payee.profile.FirstName}} from {{this.payer.profile.FirstName}}</li>
{{/each}}
</ul>
有没有办法做到这一点?