gpt4 book ai didi

angular - *ngFor 用于组件中没有数据属性的数据范围

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

在过去的 20 年里,是否有一种简单的方法可以使用 *ngFor 创建选择框的选项字段,例如从值 2016 到值 1996,组件中没有数据属性?

最佳答案

不,没有办法绕过创建数组。

据我所知,可以在模板中创建的数组大小限制为 10 或 20(这个限制最近可能也已取消 - 不确定)。

*ngFor="let x of [1,2,3...]"

另见 https://github.com/angular/angular/issues/8168

改用类似的东西:

*ngFor="let x of years"
constructor() {
this.years = [];
for(let i = 0; i < 20; ++i) {
this.years.push(2000 + i);
}
}

关于angular - *ngFor 用于组件中没有数据属性的数据范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41064145/

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