gpt4 book ai didi

javascript - Angular2 ng用于从索引中添加数字++

转载 作者:行者123 更新时间:2023-12-03 01:24:02 25 4
gpt4 key购买 nike

我正在尝试增加索引值以创建一个包含数字 1,2,3,4 的列表

<tbody>
<tr *ngFor="let item of queue.truckQueus; let i = index" [attr.data-index]="i">
<td>{{i ++ }}</td> //this throws an error
<td>{{item.truck.reg_no}}</td>
</tr>
</tbody>

如何将 1 中的数字相加

我也尝试过通过添加

{{i += 1}}

但我总是收到预期的错误表达式。我哪里出错了?

最佳答案

<tbody>
<tr *ngFor="let item of queue.truckQueus; let i = index" [attr.data-index]="i">
<td>{{i + 1 }}</td>
<td>{{item.truck.reg_no}}</td>
</tr>
</tbody>

这一定有效。

如文档中所述。

禁止具有或促进副作用的 JavaScript 表达式,包括:

  • 赋值(=、+=、-=、...)
  • 用 ; 链接表达式或,
  • 递增和递减运算符(++ 和 --)

Read Here

关于javascript - Angular2 ng用于从索引中添加数字++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51632486/

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