Çağırmak istediğim bir yönteme sahip bir alt bileşen oluşturdum.
Bu yöntemi çağırdığımda, yalnızca console.log()
satırı ateşler , test
özelliği ayarlamaz ??
Aşağıda değişikliklerimle hızlı başlangıç Angular uygulaması var.
ebeveyn
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();
}
}
Çocuk
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
Özelliği de nasıl ayarlayabilirim ?