我已经阅读了有关angular6的文章,其中有3种方法可以在孩子与父母之间进行交流。如果错误,请演示 1)输出发射器 2)使用viewchild 3)共享服务。
所以在这里,我需要了解如何将ViewChild从孩子传递给父母。
在下面的演示中,已在子组件中创建了一个表单,当子组件形式有效时,该表单应反映在父组件中。在此演示中,当组件加载到ngafterViewInit中时,请钩住view子值,其按预期工作,但是当键入某些东西时,子组件形式是有效的,在子表单中启用了按钮,这些更改未反映在需要有效的父组件中,但未按预期工作。谁能提供最好的方法?
parent component.html
<h1> Parent Component</h1>
<button class="btn btn-danger " disabled="{{check}}">CheckParentEnable</button>
<div class="childComponent">
<app-child-component></app-child-component>
k2
</div>
parent component.html
import { Component, ViewChild, AfterViewInit } from '@angular/core';
import { ChildComponent } from './child/child.component';
@Component({
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent implements AfterViewInit {
public check: boolean;
@ViewChild(ChildComponent) myname: ChildComponent;
constructor() {
}
ngAfterViewInit() {
this.check = this.myname.loginForm.valid;
}
}
Child.component.html
<h4>childComponentArea<h4>
<h1>Welcome to child component</h1>
<form [formGroup]="loginForm">
<input type="email" formControlName="email" placeholder="Email" >
<button class="btn btn-danger" [disabled]="loginForm.invalid">Submit</button>
</form>
child.component.ts
import { Component, EventEmitter, Input,Output, OnInit } from '@angular/core';
import { FormControl, FormGroup,Validators } from '@angular/forms';
@Component({
selector: 'app-child-component',
templateUrl: './child.component.html',
styleUrls: ['./child.component.css']
})
export class ChildComponent implements OnInit {
loginForm:FormGroup;
name:string ='sahir';
constructor() { }
ngOnInit() {
this.createForm();
}
private createForm() {
this.loginForm = new FormGroup({
// tslint:disable-next-line
email: new FormControl('', [Validators.required])
});
}
k8
}
答案 0 :(得分:3)
您可能需要ngAfterViewChecked
生命周期挂钩来满足您的要求。不会为每个更改的子组件值调用父级ngAfterViewInit
,而是会调用ngAfterViewChecked
。另外,您还需要将父项中的change detection
推入ViewChecked
生命周期挂钩,否则您将在这一行中收到ExpressionChanged
错误。
this.check = this.myname.loginForm.valid;
这是应该起作用的代码
import { Component, ViewChild, AfterViewChecked, ChangeDetectorRef } from '@angular/core';
constructor(private cdr : ChangeDetectorRef) {
}
ngAfterViewChecked() {
console.log('view checked')
this._check = this.myname.loginForm.valid;
console.log(this.myname.loginForm.valid);
this.cdr.detectChanges();
}
使用disabled="{{check}}"
代替[disabled]="!check"