angular中如何将子组件的FormControl绑定到父组件的FormGroup中?

发布于 2022-09-05 03:58:49 字数 1413 浏览 28 评论 0

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() {
  }

}

然后我想直接放到父组件的响应式表单中

clipboard.png

我试了将FormControlName传参到子组件,但是提示找不到父FormGroup

请问该如何配置?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北凤男飞 2022-09-12 03:58:49

将父组件的formGroup传递到子组件的属性中。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文