實際上,我正在尋找讓視圖負責標記集合視圖中第一個或最後一個項目的方法,並且我發現這一個How do I add a separator between elements in an {{#each}} loop except after the last element? 。但我不想定義itemViewClass模板的attrs(classNames for例如)在JavaScript中,我可以只使用{{itemView}}助手或東西來定義一個itemView模板?Ember是否可以與{{#collection}}一起使用{{itemView}}助手?
{{#collection contentBinding="dataList" tagName="ol" classNames="list" itemViewClass="ItemView"}}
{{#itemView classNames="item" classNamesBinding="isLastItem:last"}}
item templates
{{/itemView}}
{{/collection}}
雖然這可以通過其他方式解決,但我只想知道是否可以找到內置的支持。而且我搜索了很長時間,就是找不到Ember.Handlebars.collection
的文檔,它不在最新的API文檔中。
您正在尋找'itemClassNames'及類似物品。文檔是[here](https://github.com/emberjs/ember.js/blob/v1.0.0-pre.2/packages/ember-handlebars/lib/helpers/collection.js),但看起來像某些原因,它沒有被編譯到API文檔中。編輯 - 看起來像「{{collection}}」已被棄用。您仍然可以通過選中複選框來查看文檔 –
感謝您的建議。 'itemClassNames'很有用,但'itemClassNameBindings'似乎不起作用,或者我可能以錯誤的方式使用它。我稍後會在這裏舉一個例子。 – LiZn
您是使用'itemClassNameBindings'還是'itemClassNameBinding'? –