状态在Angular 7的api调用中返回为0

时间:2019-01-21 09:52:15

标签: angular angular-httpclient

export class BannerComponent implements OnInit {

  constructor(private http: HttpClient) { }
  banners: any;
  url = 'localhost:9000/api/banners';
  ngOnInit() {
  this.getBanners();
  }

   getBanners(): any {
        return this.http.get(this.url).subscribe(res=>{
          this.banners = res;
        })
  }


}

我收到状态代码为0的未知错误。在Postman中,我正在获取数据。

1 个答案:

答案 0 :(得分:0)

CORS-跨源资源共享问题。下载任何浏览器扩展以启用它。或制作一个拦截器,在进行api调用之前添加适当的标头。