0
私のmongoデータベースには、メンバーのスタウトを定義する番号があります。この番号の名前を取得することができます。関数。 しかし、私は火のとそれを使用する方法を知らない。テンプレートヘルパーを使用してテーブルのフィールドの値を返す方法
Template.manageMember.helpers({
usersList : Meteor.users.find(),
'usersList.profile.statut': function(){
return userRightGetNameFromId(this);
}
});
私はなかったこと::私のHTMLで 私はこれを持っている:
{{#each usersList}}
<tr>
<td contenteditable="true">{{profile.firstName}}</td>
<td contenteditable="true">{{profile.lastName}}</td>
<td contenteditable="true">{{emails.[0].address}}</td>
<td contenteditable="true">{{profile.statut}}</td>
<td contenteditable="true">{{profile.subject}}</td>
<td contenteditable="true">{{profile.roles}}</td>
</tr>
{{/each}}
そして、私のjsの中
私はこれを持って'usersList.profile.statut': function(){
return userRightGetNameFromId(this);
}