我如何编写一个将显示此内容的余烬车把助手:
<div value="40">text</div>
我需要在这里自定义value
和text
。并将这些值绑定到上下文。
我的方法不太管用:
我定义一个助手:
Ember.Handlebars.helper('progress-bar', function(value, options) {
return '<div value="' + value + '">' + options.text + '</div>';
});
然后使用它:
{{progress-bar value="50" text="this.status"}}
定义Handlebar助手时,如何访问模板中传递给助手的参数?
由于您使用的是Ember,因此您可以使用余烬组件而不是普通的车把助手。
示例:
<script type="text/x-handlebars" id="index">
{{my-component value="foo" text="bar"}}
</script>
<script type="text/x-handlebars" id="components/my-component">
<div {{bind-attr value="value"}}>
{{text}}
</div>
</script>
使用组件的好处是您不一定需要编写任何javascript-Ember生成所有管道代码。您可以在此处找到有关组件的更多信息:http://emberjs.com/guides/components/defining-a-component/
这样做如下,
http://emberjs.jsbin.com/yimecihutuka/1/edit
哈佛商学院
<script type="text/x-handlebars" data-template-name="index">
<ul>
{{#each item in model}}
<li>{{item}}</li>
{{/each}}
</ul>
{{progress-bar "50" status}}
</script>
js
App.IndexController = Ember.Controller.extend({
status:"the status"
});
Ember.Handlebars.helper('progress-bar', function(value, status) {
return new Ember.Handlebars.SafeString('<div value="' + value + '">' + status+ '</div>');
});