服务API多次调用

时间:2018-12-18 09:36:11

标签: javascript angular

我正在呼叫服务后端,但是它执行呼叫2到3次,我不知道为什么,下面我分享我的屏幕和代码。

这是我的服务代码。

public getClaimDataParam  (data:string) {
      let data1={
        "userid": this.userId,
        "status": data
      }
    return this.http.post(this.Api_urls[this.localStorage.get('app_mode')+''].newclaimUrl,data1).map((resp)=>{
    return resp;
        },(error)=>{
     this.spinner.hide()
     alert("Network Error")
   });
    }

这是我的component.ts代码

  getClaimList (data) {
      this.loading = true;
      this.spinnerService.show()
        this.batchService.getClaimDataParam(data).subscribe((resp)=>{

            this.spinnerService.hide()
            this.claimsData = resp;



            this.loading = false;

           this.tempClaimData = this.claimsData;

这是我的控制台屏幕截图(请参阅 getallclaims

enter image description here

0 个答案:

没有答案