我有以下代码:clickEventsubscription: Subscription; constructor( private activatedRoute: ActivatedRoute, private newsService: NewsService, private app: AppComponent, private EventlistenerService: EventlistenerService, public modalController: ModalController ) { this.clickEventsubscription = this.EventlistenerService.getClickEvent().subscribe(() => { this.update(); }); } update() { this.resetParameters(); this.ngOnInit(); }我想等到resetParameters(); 完成后调用ngOnInit(); 或其他一些类,因为我想首先重置参数,以便加载但参数不会被重置...
添加回答
举报
0/150
提交
取消