代码如下:
正常的话应该是选中了默认值这一项吧。
把currValue
改成选项一
等其他有值的就能正常选中。
//html
<nz-select style="width: 120px;" [(ngModel)]="currValue">
<nz-option [nzValue]="null" nzLabel="默认值"></nz-option>
<nz-option nzValue="选项一" nzLabel="选项一"></nz-option>
<nz-option nzValue="选项二" nzLabel="选项二"></nz-option>
</nz-select>
//ts
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: [ './app.component.css' ]
})
export class AppComponent {
currValue=null
}
一般不会使用null作为默认值,可以用placeholder。