我正在开发一个页面,我需要一个带搜索字段的选择框,所以我决定使用ngSelectModule。
我的HTML:
sudo chmod -R 755 /var/www/html/esic
or
sudo chmod -R 777 /var/www/html/esic
在某些更改后,选择列表未链接到mesurePoints值。
答案 0 :(得分:3)
this.mesurePoints = [...this.mesurePoints]
它将更新您的商品https://github.com/ng-select/ng-select#change-detection
答案 1 :(得分:-1)
您只需使用html select
代码
请查看下面的代码
<select [(ngModel)]="myvar">
<option *ngFor="let var of listOfVars" [value]="var">{{var}}</option>
</select>
其中:
myvar 是包含所选值的变量(应在typescript组件上声明)。
listOfVars 是在您的情况下包含变量列表的列表 mesurePoints 。