Я створив дочірній компонент, у якому є метод, до якого потрібно звернутися.
Коли я викликаю цей метод, він запускає лише console.log()
рядок, він не встановить test
властивість ??
Нижче наведено швидкий запуск програми Angular зі своїми змінами.
Батьківський
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();
}
}
Дитина
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';
}
}
Як я можу встановити також test
властивість?