我有以下工作车把代码:
{{#each phoneNumber in switchboardEntry.sipAccount.phoneNumbers}}
<span class="label">
{{phoneNumber.number}}
</span>
{{/each}}
但我想只循环到前两个条目,switchboardEntry.sipAccount.phoneNumbers
而不是完整的集合。我在http://emberjs.com/guides/enumerables/上找到了一个过滤器示例,但仍处于 Ruby 思维模式,我尝试将该过滤器放在其后switchboardEntry.sipAccount.phoneNumbers
不起作用。
解决这个问题的最佳方法是什么?