我有一个从外部 API 请求数据的 Angular 2 应用程序。
我无法更改 API 代码,但可以更改 TypeScript 和 Lite-Server 配置。
错误: XMLHttpRequest 无法加载http://api.zanox.com/ .... 请求的资源上不存在“Access-Control-Allow-Origin”标头。因此,不允许访问源“ http://localhost:4000 ”。
我已经看到了很多关于 CORS 的内容,但我不知道如何将其适应我的代码。解决这个问题的最简单方法是什么?
我的服务:
import { Injectable } from '@angular/core';
import { Http, Response, Headers, RequestOptions } from '@angular/http';
import { Observable } from 'rxjs/Observable';
import { Page } from './page';
import 'rxjs/add/operator/map';
import 'rxjs/add/operator/catch';
@Injectable()
export class ProductService {
private urlPage = 'http://api.zanox.com/json/...';
constructor(private http: Http) { }
getPage(): Observable<Page> {
return this.http.get(this.urlPage).map(this.extractData).catch(this.handleError);
}
private extractData(res: Response) {
let body = res.json();
return body || {};
}
private handleError(error: any) {
let errMsg = (error.message) ? error.message :
error.status ? `${error.status} - ${error.statusText}` : 'Server error';
console.error(errMsg);
return Observable.throw(errMsg);
}
}
我的组件:
import { Component, OnInit } from '@angular/core';
import { ProductService } from './product/productService';
import { Page } from './product/page';
@Component({
templateUrl: 'app/app.product.html',
selector: 'product-app',
providers: [ProductService]
})
export class AppProduct implements OnInit {
private errorMessage: string;
page: any;
constructor(
private productService: ProductService) {
}
ngOnInit() {
this.getPage();
}
getPage() {
this.productService.getPage().subscribe(
page => this.page = page,
error => this.errorMessage = <any>error
)
}
}