如图请问angular如何在下拉框默认显示Flase?我设置了[value]=“false”并不好用
绑定一个 ng-model , 将ng-model 默认值置成 false
改成这个行不:[value]=“'false'”
[(value)]="false" 加上小括号。