根据整数值生成选择下拉列表

时间:2017-05-17 12:33:56

标签: angular typescript select

我在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

1 个答案:

答案 0 :(得分:2)

*ngFor语法为let number of totalArray#number of totalArray大约一年后无效:

<ul>
  <li *ngFor="let number of totalArray">{{number}}</li>
</ul>