私の角度の値には、タイムゾーンを変更するための選択肢があります。 this.userTimeZoneは、コンポーネント内のオブジェクトです。angular4で選択初期値を割り当てます
{
AdjustmentRules:null
BaseUtcOffset:"-04:30:00"
DaylightName:"Venezuela Daylight Time"
DisplayName:"(UTC-04:30) Caracas"
Id:"Venezuela Standard Time"
StandardName:"Venezuela Standard Time"
SupportsDaylightSavingTime:false}
私の選択オプションは、次のようになります。
<select name="timeZones" [(ngModel)]="userTimeZone" (change)="setTimezoneId($event)" class="form-control">
<option *ngFor="let time of timezones" [ngValue]="time">{{time.DisplayName}}</option>
</select>
私は選択の初期値を設定することができませんでしだ。
userTimeZoneに値が設定されていても、選択時に選択時に空白が表示されます。
私がuserTimeZone.Idと[ngValue] = "time.id"を与えると、オプションが選択されますが、変更時に返される値はオブジェクト全体ではなくidだけです。
選択オプションが変更されたときにオブジェクト全体が必要な場合は、選択の初期値も設定します。
使用(ngModelChange)= "setTimezoneId($イベント)" の代わりに、(変更)= "setTimezoneId(:
ありません何が間違っていることを確認here.Pleaseガイド
おかげ