Я новичок в Typescript и Angular 2. Я попытался найти ответ в Интернете, но кажется, что они не работают для меня.
Скажем, у меня есть app.component, как показано ниже:
export class AppComponent implements OnInit {
constructor(public _testService: TestService) { }
listForCart = this._testService.getListForCart();
cartCount = this.listForCart.length;
cartPayableAmount = 0;
ngOnInit() {
this.computeTotal();
}
TestingFunction(){
console.log("Got here");
}
}
Теперь я хочу получить доступ к TestingFunction в моем app.component в другом классе, как показано ниже:
export class BuyTestComponent {
constructor(private _testService: TestService) {
}
public pageTitle: string = "ALL PRACTICE TEST SERIES";
TestHere() {
// should call TestingFunction() here.....
}
}
Как это сделать? Пожалуйста, помогите