我正在按照本指南創建模板驅動表單:https://angular.io/guide/formsAngular 2:如何創建輸入數組?
我需要一組輸入,例如,
<input
*ngFor="let screenshot of screnshots"
[(ngModel)]="screenshot.id"
type="text"
name="screenshots[]" />
但是在{{form.value}}
中,它只顯示一個輸入值而不是多個。
我想要的{{form.value}}
輸出是這樣的:{screenshots:[1, 2, 3]}
我需要這個只在陣列的形式。
是否有可能以這種方式實現?或者什麼是實現這一目標的最佳解決方案?
使用模型驅動的形式formarray。 – Alex