为了账号安全,请及时绑定邮箱和手机立即绑定

如何等待订阅中调用的方法?

如何等待订阅中调用的方法?

缥缈止盈 2024-01-18 16:58:29
我有以下代码: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(); 或其他一些类,因为我想首先重置参数,以便加载但参数不会被重置...
查看完整描述

1 回答

?
MYYA

TA贡献1868条经验 获得超4个赞

ngOnInit 仅在指令实例化时调用一次。您可以将 ngOnInit 中的代码移至另一个函数并调用它;



查看完整回答
反对 回复 2024-01-18
  • 1 回答
  • 0 关注
  • 76 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信