我想做的就是将用户体验添加到一个数字中。目前,我只是在线显示单独的数字。换句话说:显示每个成员经历的分离。这是代码:
服务器:
Alliance.aggregate([
{
"$lookup": {
"from": "alliancemembers",
"localField": "_id",
"foreignField": "ally_id",
"as": "allymembers"
}
}
客户:
<ol class="text-center">
{{#each alliances}}
<li>
{{this.title}}
{{#each allymembers}}
{{experience}} // here Im getting experiences of users in alliance. 854, 2089
{{/each}}
</li>
{{/each}}
</ol>