我有一个比我需要使用的源代码(话语)ember.js
。我正在尝试使用cloaked-collection
.
//topics.hbs
{{#unless model.postStream.loadingFilter}}
{{cloaked-collection itemViewClass="post"
defaultHeight="200"
content=postsToRender
slackRatio="15"
loadingHTML=""
preservesContext="true"
uncloakDefault="true"
offsetFixedTop="header"
offsetFixedBottom="#reply-control"}}
{{/unless}}
//post.hbs
//some code here.
//Then I want to insert <div class="uniw"></div> only on the first post
问题是:对于列表itemViewClass="post"
,我如何检查我是否在第一个“帖子”中?这样我就可以插入一段代码。