我有以下情况。有一个集合 Suppliers 和另一个 Invited。现在 Invited.supplier = Supplier._id (语法可能是错误的) Invited collection 是指一对多方式的供应商。
在我的 html 中,我有
<template name="mytemplate">
{{#each invited_list}}
{{supplier}}
{{f1}}
{{f2}}
{{/each}}
</template>
我有一个辅助功能
Template.mytemplate.helpers({
invited_list : function(){
return Invited.find({"something"});
}
});
我想在我的邀请列表中显示 {{Suppliers.name}} 而不是 _id in {{supplier}} 。我有哪些选择?