追加会将一个项目添加到列表的末尾。
l = [1,2,3,4]
l.append(5)
输出
[1, 2, 3, 4, 5]
现在不是在列表末尾添加5,而是将其添加到列表中的随机位置。假设5被添加到索引2.数字3将向前移动一个索引。
[1,2,5,3,4]
答案 0 :(得分:2)
您可以使用<form (ngSubmit)="onSubmit()" #f="ngForm">
<ng-container *ngIf="selected">
... form children ....
</ng-container>
</form
列表方法。
insert
方法的第一个参数是index,第二个参数是value。 See documentation
答案 1 :(得分:0)
使用Insert,其中第一个参数是index(position),2nd是value
l.insert(2, 5)