App.FolderListItemView = Ember.View.extend({
templateName: 'folder-list-item',
tagName: 'li',
classNames: ['folder'],
classNameBindings: ['opened'],
opened: false,
click: function (e) {
this.set('opened', !this.get('opened'));
}
});
<script type="text/x-handlebars" data-template-name="folder-list-item">
<i {{bind-attr class="opened:icon-content-plus:icon-content-minus"}}></i>
...
</script>
我想根据视图的“打开”值更改图标(正/负)。
bind-attr不起作用。我该如何处理?
最佳答案
您需要在模板中使用view.opened
属性
关于javascript - 如何在其模板中使用View属性?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29408192/