我有一个Angular 2应用程序,它从外部API请求数据。
我无法更改API代码,但我可以更改TypeScripts和Lite-Server配置。
错误: XMLHttpRequest无法加载http://api.zanox.com/ .... No' 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
)
}
}
答案 0 :(得分:1)
我可以使用JSONP解决问题:
app.module.ts:
import { JsonpModule } from '@angular/http';
@NgModule({
imports: [JsonpModule]
})
productService.ts:
import {Jsonp} from '@angular/http';
private urlPage = 'http://api.zanox.com/json/...&callback=JSONP_CALLBACK';
constructor(private _jsonp: Jsonp) {}
getPage(): Observable<Page> {
return this._jsonp.get(this.urlPage).map(this.extractData).catch(this.handleError);
}