【发布时间】:2013-12-06 12:08:58
【问题描述】:
使用模板助手和模板变量有什么区别(不正确的术语?)?您什么时候决定使用哪个?
在下面的示例中,Template.apple.price 函数和 Template.apple.helpers 中的 quantity 函数似乎执行相同的操作。
<template name="apple">
{{price}}
{{quantity}}
</template>
Template.apple.price = function() {
return 20;
}
Template.apple.helpers({
'quantity': function() {
return 100;
}
});
【问题讨论】:
标签: javascript node.js meteor handlebars.js