我正在使用Ionic3,如果我在显示页面时使用该对象,则无法设置所选值 .

<ion-item>
    <ion-label floating>City</ion-label>
    <ion-select (ionChange)="setDistrictValues(user.sCity)" [(ngModel)]="user.sCity" formControlName="cities">
        <ion-option [value]="sCity" *ngFor="let sCity of city">{{sCity.name}}</ion-option>
    </ion-select>
</ion-item>

我不知道我想念的是什么 . 如果我在 ionViewWillLoad() 中运行 console ,那么 user.scity 已经有正确的值,

enter image description here

但没有在 ion-option 中选中

enter image description here

如何显示所选选项但能够编辑?