編輯的反應形式在我angular2應用程序我有一樣的反應形式:如何知道是否正在對angular2
<form [formGroup]="personForm" novalidate>
<input class="form-control"
[ngClass]="{'edited':personForm.value}" // this line*
formControlName="name">
<label>Name</label>
//here i have more other inputs like this one
</form>
這種形式在兩種情況下使用時,即時通訊創建一個新的人,當即時編輯一個存在的人。所以我想知道如何在編輯或創建新人時更改'編輯'屬性。 'personForm.value'永遠是真的,所以它的工作。
類是怎樣的形式應該知道嗎?你需要用*表單來設置它。 – jonrsharpe