我在component.ts中有一个变量,我想基于整数生成选择选项。
说我有一个变量
总计= 10;
this.totalArray = Array(this.total).fill().map((x,i)=>i);
component.html
@Component({
template: `
<ul>
<li *ngFor="#number of totalArray">{{number}}</li>
</ul>
`
})
export class SampleComponent {
(...)
}
但这会产生错误, Supplied parameters do not match any signature of call t arget
答案 0 :(得分:2)
*ngFor
语法为let number of totalArray
。 #number of totalArray
大约一年后无效:
<ul>
<li *ngFor="let number of totalArray">{{number}}</li>
</ul>