1
我有一個對象包含數據(例如:orderDetails
),我有FormGroup
對象綁定到我的對象(orderDetails
)。綁定對象到FormGroup - ng2
this.formGroup = this.formBuilder.group(this.orderDetails);
我想改變的對象(例如:this.orderDetails.price = 15;
),並看到它在formGroup並在視圖中。
我也可以訪問formGroup this.formGroup.controls['price'].setValue(15);
但它迫使我寫字段名稱沒有intellisense。
有什麼辦法可以在對象和formGroup
之間同步嗎? 謝謝!
它是如何看的HTML? –
haya