我正在尝试使用Angular 2从Statbureau通胀api- https://www.statbureau.org/en/inflation-api检索数据。我开始测试我的api并确保它在控制台中输出成功消息。看来我正在使用的api是JSONP,因为我正在使用的JSON地址 http://www.statbureau.org/calculate-inflation-price-jsonp?jsoncallback=?在网站上他们提供了一个JS小提琴,它成功地调用了api使用jquery。当我尝试在Angular 2中进行相同的调用时,我得到以下错误:
TypeScript error: C:/Users/Rennie/projects/inflator/app/pages/home/home.ts(22,13): Error TS
2322: Type 'Observable<any>' is not assignable to type 'HomePage'.
Property 'jsonp' is missing in type 'Observable<any>'.
TypeScript error: C:/Users/Rennie/projects/inflator/app/pages/home/home.ts(22,13): Error TS
2409: Return type of constructor signature must be assignable to the instance type of the c
这是我的代码
import {Component} from '@angular/core';
import {NavController} from 'ionic-angular';
import {Jsonp, URLSearchParams } from '@angular/http';
import {Observable} from 'rxjs/Rx';
import 'rxjs/add/operator/map';
@Component({
templateUrl: 'build/pages/home/home.html'
})
export class HomePage {
constructor(private jsonp: Jsonp) {
this.jsonp=jsonp;
let cpiUrl = "https://www.statbureau.org/calculate-inflation-price-jsonp?jsoncallback"
let params = new URLSearchParams();
params.set('country', 'united-states');
params.set('amount', '102');
params.set('start', '1968/1/1');
params.set('finish', '2016/1/1');
// TODO: Add error handling
return this.jsonp
.get(cpiUrl, { search: params }).map(function(response){ return response.json(); })
}
}
我的代码与jsfiddle中的调用不同,因为我对api参数进行了硬编码,以便快速查看结果。