Subscribe()方法在Microsoft Edge中不起作用

时间:2019-01-21 18:07:18

标签: angular typescript observers

我正在使用subscribe()来获取json格式的值。此值显示在屏幕中。

问题出在Microsoft Edge中,此方法无效。返回错误HttpResponse0。但是,在Chrome和Firefox中正常工作。

这是我的代码:

if (this.machine.length === 0) {
  this.simulatorService.getAks(this.codIm, this.codCS)
    .subscribe(
      data => {
        console.log('works!');
        this.machine= data;
      },
      error => {
        console.log(error);
        this.machine= [];
      }
    );
}

因此,我需要使用.subscribe()以外的其他方法吗?什么?

那么,使代码在Microsoft Edge上运行的最佳方法是什么?

---------- UPDATE 1 -----------

此代码是我的getAsks。这是一条返回带有一些数据的json文件的路由。

  getAsks(codIm: codIm, codCS: codCS): Observable<Array<Equip>> {

    return this.http.get<Array<Equip>>(
      `${this.urlBase}v1/simulator/machine/${codIm}/${codCS}`,
      {
        headers: new HttpHeaders({
          'Content-Type': 'application/json'
        })
      });
  }

1 个答案:

答案 0 :(得分:0)

错误无效的HttpResponse可能是由于您的api未返回正确的标头。因此,我建议您检查${this.urlBase}v1/simulator/machine/${codIm}/${codCS}的值,以及您的api是否正确处理了此链接。