gpt4 book ai didi

angular - 如何在模板语法中获取数组的长度

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

我正在尝试评估以下模板语法中的数组:

FAIL 
{{ cols.length }}

我收到以下错误。

platform-browser.umd.js:1900 ORIGINAL EXCEPTION: TypeError: Cannot read property 'length' of undefined

但我确实进行了迭代,所以我知道该部分有效:

      SUCCESS
<th *ngFor="let h of cols">
{{h}}
</th>

最佳答案

使用

{{ cols?.length }}

或者

<div *ngIf="cols">{{ cols.length }}</div>

如果要为空数组打印 0,请使用

{{ cols?.length || '0' }}

原因:cols在Angular2加载模板时没有启动。我们想等到它准备好访问其成员。

关于angular - 如何在模板语法中获取数组的长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39048734/

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