首页 文章

从子组件向表单添加输入

提问于
浏览
0

我正在尝试根据传入数据生成输入 . 每个输入都是它们自己的组件,以便稍后进行更多修改/功能 .

然后有一个表单处理器,其中包含一个单击按钮,可以处理表单所具有的内容 .

我遇到的问题是,当我单击按钮处理它时,我得到了表单,但是所有值都是空的,我看不到表单中的任何内容,甚至使它看起来像是识别出输入在那里 .

根形式:

<form #inputForm="ngForm">
  <div *ngFor="let d of data">
    <app-input [name]="d.name" [label]="d.label"></app-input>
  </div>
</form>
<app-form-processor [inputForm]="inputForm"></app-form-processor>

输入类:

<label>{{label}}</label>
<div>
  <input [(ngModel)]="name" [name]="name">
</div>

表格处理器:

<button (click)="processForm()">Process</button>

表格处理器(部分代码):

@Input() inputForm: NgForm;

generateStatement() {
  console.log(this.inputForm);
}

控制台日志只有一个没有任何值的ngForm(除了ngForm有的默认值之外的其他任何东西)

Note that if I paste the contents of the input class straight into the ngForm (instead of using a child component) it works fine, but I would like to use a child component if possible.

1 回答

相关问题