gpt4 book ai didi

Angular 2 *ngFor 语法

转载 作者:行者123 更新时间:2023-12-02 14:31:32 25 4
gpt4 key购买 nike

我的主要问题是尝试循环一定次数(假设为 n),但 ngFor 只接受数组,例如:“#item of [1, 2, ..., n] ”,那么仅使用项目计数(不创建无用的数组,只有数字 1 到 n)?

所以我开始阅读更多语法,然后我注意到有:

  • *ngFor="#item of items;
  • *ngFor="#item in items;

那么“in”和“of”之间有什么区别以及有哪些用例?这和我原来的案子有什么关系吗?

提前致谢。

最佳答案

没有

*ngFor="#item in items;

你必须使用of。早期版本需要 in 但他们将其更改为符合 https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Statements/for...of

应该是

*ngFor="let item of items; ..."

目前 ngFor 仅迭代数组。

关于Angular 2 *ngFor 语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36235510/

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