我创建了一个使用if条件结构的助手。
它有效,但是我的数据库数据没有出现在其中。有人知道原因吗?
数据{{name}}
和{{function}}
不会出现。
我的代码:
{{#each users}}
{{#if rank '20'}}
name: {{name}}
function: {{function}}
{{/ if}}
{{/ each}}
我的助手:
helpers: {
formatDate: (date) =>{
return moment(date).format('DD/MM/YY')
},
if: (string1, string2, options) => {
if (string1 == string2){
return options.fn(this);
}else{
return options.inverse(this);
}
}
}