Ember:在#each 循环中使用索引选择对象形式数组
Posted
技术标签:
【中文标题】Ember:在#each 循环中使用索引选择对象形式数组【英文标题】:Ember: Selecting the object form array using index in #each loop 【发布时间】:2021-12-08 07:39:10 【问题描述】:尝试在 EmberJs 中循环使用索引值
考虑以下场景,
#each array1 as |element index|
<Component1 @prop=element @prop2=@array2[index] />
/each
我希望使用第一个数组的索引值从第二个数组发送对象。我找不到任何对此的参考。我发现的任何引用都单独使用第一个数组,并且没有在另一个变量中使用索引。 提前感谢您的时间和精力。
【问题讨论】:
【参考方案1】:您可以使用get helper。
#each array1 as |element index|
<Component1 @prop=element @prop2=get @array2 index />
/each
【讨论】:
以上是关于Ember:在#each 循环中使用索引选择对象形式数组的主要内容,如果未能解决你的问题,请参考以下文章