数据库数据未出现在把手帮助器中

时间:2019-11-23 01:29:23

标签: node.js handlebars.js helper

我创建了一个使用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);
            }
        }
    }

0 个答案:

没有答案