把手辅助器返回图像高度(宽度*比率)返回NaN

时间:2013-06-06 01:52:53

标签: javascript handlebars.js helper

我正在使用Handlebarz加载带有一些文字的图片。我需要能够指定每个图像的高度,以便图像在屏幕上绘制时不会重叠。

我已经注册了一个辅助函数:

$(document).ready(function(){    
    Handlebars.registerHelper("height", function(width,ratio) {
        var h = width * ratio;
        return h;
    })
   ...
})

我正在尝试使用帮助器`style =“height:{{height 158 product.image1.ratio}} 1

变量product.image1.ratio在单独使用时显示值,但是这种语法不能正确调用助手,因为结果始终是NaN。

0 个答案:

没有答案