我正在使用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。