gpt4 book ai didi

javascript - ngFor调用函数Angular2

转载 作者:太空狗 更新时间:2023-10-29 18:33:33 27 4
gpt4 key购买 nike

以下作品:

*ngFor="let child of items || []; let i = index;"

这不是:

*ngFor="let child of items || []; let specialVersionOfI = someFunction(index);"

我得到:

Parser Error: Unexpected token (, expected identifier, keyword, or string at column 56 in [ngFor let child of items |

这背后的原因是什么,是否有替代方案?

最佳答案

在组件中映射的版本将更具可读性,例如:

this.items.map((child, i) => {
child['specialVersionOfI'] = this.someFunction(i);
归还 child ;
})
然后在模板中只是 {{child.specialVersionOfI}}

关于javascript - ngFor调用函数Angular2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39352494/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com