Handlebars.js if 功能扩展

在使用Handlebars模板时,由于在模板中if判断很多时间无法满足需求(if好像目前只支持对象为否为空),所以需要对if进行功能扩展,这里需要用到handlebars的helper类库,下面以两个数比大小为例来说明

1.定义比较大小的方法

    //这里需要引用Handlebars的运行时组件库
    let Handlebars = require("handlebars/runtime")["default"];
    //注册一个名字叫做compareTwoNum的方法,
    Handlebars.registerHelper("compareTwoNum",function(v1,v2,options){
        if(v1>v2){
            //固定写法,满足if执行{{if}}部分
            return options.fn(this);
        }else{
            //不满足条件执行{{else}}部分
            return options.inverse(this);
        }
    });

2.模板里引用


{{#compareTwoNum v1 v2}}

{{else}}

{{/compareTwoNum}}

好了,就这么简单

Handlebars.js 更多教程:

1.http://www.cnblogs.com/iyangyuan/archive/2013/12/12/3471227.html
2.http://keenwon.com/992.html
3.http://www.ghostchina.com/introducing-the-handlebars-js-templating-engine/

你可能感兴趣的:(js,JavaScript)