আমি একটি শিশু উপাদান তৈরি করেছি যার একটি পদ্ধতি রয়েছে যা আমি প্রার্থনা করতে চাই।
যখন আমি এই পদ্ধতিটি শুরু করি তখন এটি কেবল console.log()
লাইনে গুলি চালায় , এটি test
সম্পত্তি সেট করে না ??
নীচে আমার পরিবর্তনগুলির সাথে দ্রুত শুরু কৌণিক অ্যাপ্লিকেশনটি দেওয়া আছে।
মাতা
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
সম্পত্তি সেট করতে পারি ?