如何在ngOnInit中使用订阅等待API调用完成?

时间:2018-09-26 14:10:00

标签: node.js angular typescript angular6

实际日志顺序: (“ ngOnInit开始”) (“在我之后aaya”,this.policydetails) (“此处”,Object.keys(this.policy).length)

预期的日志顺序: (“ ngOnInit开始”) (“这里”,Object.keys(this.policy).length) (“在我之后aaya”,this.policydetails)

Component.ts文件片段如下:

ngOnInit() {
    console.log('ngOnInit started');
    this.route.params.subscribe(params => {
      this.getPoliciesService.getPolicyDetails(params.policyNo)
      .subscribe((data: PoliciesResponse) => {
        this.policy = data.data[0];
        this.flattenPolicy();
        console.log('Here', Object.keys(this.policy).length);
    });
    });

    this.makePolicyTable();

  }

  ngAfterViewInit() {
    console.log('after me aaya', this.policydetails);
    const table = this.policydetails.nativeElement;
    table.innerHTML = '';
    console.log(table);
    console.log(this.table);
    table.appendChild(this.table);
    console.log(table);
  }

下面的Service.ts文件片段:

getPolicyDetails(policyNo) {
  const serviceURL = 'http://localhost:7001/getPolicyDetails';
  console.log('getPolicyDetails service called, policyNo:', policyNo);
  const params = new HttpParams()
    .set('policyNo', policyNo);
  console.log(params);
  return this.http.get<PoliciesResponse>(serviceURL, {params} );
}

与下面的API调用相对应的JS文件片段:

router.get('/getPolicyDetails', async function(req, res) {
    let policyNo = (req.param.policyNo) || req.query.policyNo;
    console.log('policyNo', typeof policyNo);
    await helper.getPolicyDetails({'policyNo' : policyNo}, 
        function(err, data) {
            console.log(err, data)
            if (err) {
                return res.send({status : false, msg : data});
            }
            return res.send({status : true, data : data});
    });
});

有人可以建议我在什么地方需要异步等待预期的日志顺序吗?

2 个答案:

答案 0 :(得分:2)

如果您希望仅在网络请求(this.makePolicyTable())完成后才调用getPolicyDetails,则应将该调用放在.subscribe()块的内部:

ngOnInit() {
  console.log('ngOnInit started');
  this.route.params.subscribe(params => {
    this.getPoliciesService.getPolicyDetails(params.policyNo)
      .subscribe((data: PoliciesResponse) => {
        this.policy = data.data[0];
        this.flattenPolicy();
        console.log('Here', Object.keys(this.policy).length);

        this.makePolicyTable();
      });
  });
}

您可能还希望将ngAfterViewInit()块中subscribe()中的表逻辑也移到这里。

基本上,任何需要等待异步调用完成的逻辑都应在.subscribe()块内触发。否则,如您所见,它可以在Web请求返回之前运行。

最后,我将这个Web服务调用移至ngAfterViewInit()而不是ngOnInit()中。然后,您可以确保在Web服务调用完成时,已全部设置了Angular组件和视图以供您操作。

答案 1 :(得分:0)

您还可以在组件中将标志变量设置为false,然后在异步调用完成时将其设置为true,并使用* ngIf语法基于该标志变量呈现HTML。