angular中如何将子组件的FormControl绑定到父组件的FormGroup中?
angular初学者一枚,现在有一个表单方面的需求
我使用PrimeNg的DropDown自己写了一个包含内容下拉组件
<p-dropdown [options]="cities" [formControlName]="tzformControlName"></p-dropdown>
import {Component, Input, OnInit} from '@angular/core';
import {SelectItem} from 'primeng/primeng';
import {FormGroup} from "@angular/forms";
@Component({
selector: 'tz-dropdown-car',
templateUrl: './dropdown-car.component.html',
styleUrls: ['./dropdown-car.component.css']
})
export class DropdownCarComponent implements OnInit {
cities: SelectItem[];
@Input()
tzformControlName: string;
constructor() {
this.cities = [];
this.cities.push({label: 'Select City', value: null});
this.cities.push({label: 'New York', value: {id: 1, name: 'New York', code: 'NY'}});
this.cities.push({label: 'Rome', value: {id: 2, name: 'Rome', code: 'RM'}});
this.cities.push({label: 'London', value: {id: 3, name: 'London', code: 'LDN'}});
this.cities.push({label: 'Istanbul', value: {id: 4, name: 'Istanbul', code: 'IST'}});
this.cities.push({label: 'Paris', value: {id: 5, name: 'Paris', code: 'PRS'}});
}
ngOnInit() {
}
}
然后我想直接放到父组件的响应式表单中
我试了将FormControlName传参到子组件,但是提示找不到父FormGroup
请问该如何配置?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将父组件的formGroup传递到子组件的属性中。