cutom输入绑定角度5

时间:2018-05-24 17:39:54

标签: angular typescript angular5

我想将数据从输入字段发送到组件以便检索后续数据,如果我将数据绑定到value属性它按我想要的方式工作但我无法提交表单,因为值绑定值不是什么是后端需要的。这是我的代码示例

  

component.ts

argv[1]
  

component.html

fetchProductTypeForCategory(event) {
  let category = event.srcElement.attributes.value || event.currentTarget.value;
  this.productTypeSrv.fetchProductTypesParam(category)
    .subscribe(res => {
      this.productTypes = res;
    }, err => {
      console.log(err);
    })
}

如何将<select class="form-control" [formControl]="subCategoryForm.controls['l1category']" (change)="fetchProductTypeForCategory($event)"> <option *ngFor="let item of categorys" [value]="item.id">{{item.name}}</option> <!-- <option *ngFor="let item of categorys" [value]="item.slug">{{item.name}}</option> --> // need this in order to submit the form </select> 绑定到其他输入属性并在item.id调用中使用它?

0 个答案:

没有答案