我已经设法通过使用循环的数组来解决这个问题,但是希望保持该数组不变。
{{#each notes as |note index|}}
{{#power-select
selected=note.selectedDropdown
...
|name|
}}
{{name}}
{{/power-select}}
{{/each}}
理想情况下,我想做这样的事情
{{#each notes as |note index|}}
{{#power-select
selected=(concat 'selectedDropdown-' index)
...
|name|
}}
{{name}}
{{/power-select}}
{{/each}}
这可能吗?如果可以,怎么做?