在ember模板中访问数组元素 [英] Access array element in ember template

查看:86
本文介绍了在ember模板中访问数组元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经尝试过 SO Post

但是,我想要实现以下内容:

But, i want to achieve the following:

组件

abc = [10,20,30,40,50]
cde = [0,1,2,3,4]

模板

{{#each cde as |num|}}
  {{ abc.[num] }}
{{/each}}

预期输出:

10 20 30 40 50

但是,它不输出任何东西。什么是错误?

But, it doesn't output anything. What is wrong?

推荐答案

尝试这个,

{{#each cde as |num|}}
  {{get abc (concat num '')}}
{{/each}}

我不需要 cde 数组,
每个块带有索引,如果需要,您可以使用它。

I dont get the need for cde array, each block comes with index, if needed you can use it.

{{#each abc as |num index|}}

这篇关于在ember模板中访问数组元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆