我正在尝试使用 Angular 的反应式表单,但我无法弄清楚如何延迟由服务填充的下拉列表的默认值绑定。这是我的组件代码的片段:
export class TransferComponent {
id: number;
accounts: Account[] = [];
myForm: FormGroup;
transfer: Transfer;
constructor(
private http: Http,
private fb: FormBuilder,
private route: ActivatedRoute,
private transferService: TransferService,
private accountService: AccountService,
private router: Router) {
this.transfer = new Transfer();
this.myForm = fb.group({
'id': [null],
'accountFromId': [this.transfer.accountFromId, Validators.required],
'accountToId': [this.transfer.accountToId, Validators.required],
'title': [this.transfer.title, Validators.required],
'amount': [this.transfer.amount, Validators.required],
'transferDate': [this.transfer.transferDate, Validators.required]
});
}
ngOnInit(): void {
this.accountService.getAccountList()
.then(accounts => this.accounts = accounts);
this.route.queryParams.subscribe(params => {
this.id = params['id'];
if (this.id) {
this.transferService.getTransfer(this.id)
.then(transfer => {
this.transfer = transfer;
this.myForm.setValue(transfer);
});
}
});
}
这里的想法是尝试获取“id”参数,为转移实体调用服务并将其绑定到带有帐户条目的预填充下拉列表的表单。我的部分观点如下所示:
<select class="form-control"
id="accountFromInput"
[formControl]="myForm.controls['accountFromId']">
<option *ngFor="let acc of this.accounts" value="{{acc.id}}">{{acc.name}}</option>
</select>
对于大多数字段,传输实体正确绑定,但 'accountFromId' 选择元素留下了空值选择(选项存在,但未正确选择)。我应该如何重新连接我的组件以确保在从服务获取帐户值并将它们添加到选择后绑定 accountFromId?