我试图将 children 中的所有 FormGroup 传递给我的指令。为什么它们没有被传输?我尝试使用 ViewChildren 和 ContentChildren,但结果未定义
我正在尝试将 children 中的所有 FormGroup 传递给我的指令。为什么它们没有被传输?
我尝试使用 ViewChildren 和 ContentChildren,但结果未定义
<div block="tab" [class.is-active]="toggleGroup.value === 'output'" fieldGroupValidation>
<app-rubric-theme-date></app-rubric-theme-date>
<app-authors></app-authors>
</div>
@Directive({
selector: '[fieldGroupValidation]'
})
export class FieldGroupValidationDirective implements OnInit, OnDestroy {
@ViewChildren(FormGroup) controls: QueryList<FormGroup>;
constructor(
) {}
ngOnInit() {
// console.log('contorls', this.controls);
// console.log('controls names: ', this.controls);
}
ngAfterViewInit() {
console.log('contorls', this.controls);
}
模板中的组件里面有表单组
如何正确地将 Children 转移到 Angular 指令
下载声明:
本站所有软件和资料均为软件作者提供或网友推荐发布而来,仅供学习和研究使用,不得用于任何商业用途。如本站不慎侵犯你的版权请联系我,我将及时处理,并撤下相关内容!