J'ai créé un composant enfant qui a une méthode que je souhaite appeler.
Lorsque j'invoque cette méthode, il ne déclenche que la console.log()
ligne, il ne définira pas la test
propriété ??
Vous trouverez ci-dessous l'application Angular de démarrage rapide avec mes modifications.
Parent
import { Component } from '@angular/core';
import { NotifyComponent } from './notify.component';
@Component({
selector: 'my-app',
template:
`
<button (click)="submit()">Call Child Component Method</button>
`
})
export class AppComponent {
private notify: NotifyComponent;
constructor() {
this.notify = new NotifyComponent();
}
submit(): void {
// execute child component method
notify.callMethod();
}
}
Enfant
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'notify',
template: '<h3>Notify {{test}}</h3>'
})
export class NotifyComponent implements OnInit {
test:string;
constructor() { }
ngOnInit() { }
callMethod(): void {
console.log('successfully executed.');
this.test = 'Me';
}
}
Comment puis-je définir la test
propriété également?