类型“{}”

时间:2015-11-25 14:58:31

标签: angular typescript rxjs

我在Typescript中有一个抽象基类,如下所示:

import {Http, Headers, Response} from 'angular2/http'; 
export abstract class SomeService {
    constructor(private http:Http) {}   

    protected post(path:string, data:Object) {
        let stringifiedData = JSON.stringify(data);
        let headers = new Headers();
        headers.append('Content-Type', 'application/json');
        headers.append('Accept', 'application/json');

        this.http.post(`http://api.example.com/${path}`, stringifiedData, { headers })
            .map(res => res.json())
            .subscribe(obj => console.log(obj));
    }
}

完美无缺。但是,Typescript编译器抱怨.map(res => res.json())。我一直收到这个错误:

ERROR in ./src/app/components/shared/something/some.abstract.service.ts
(13,29): error TS2339: Property 'json' does not exist on type '{}'.

我按照the angular 2 documentation中的示例进行操作,可以使用。我只是厌倦了盯着这个错误。我错过了什么吗?

2 个答案:

答案 0 :(得分:17)

对我来说这看起来很奇怪......

.map(res => (<Response>res).json())

我愿意

.map((res: Response) => res.json())

答案 1 :(得分:8)

你可以通过类型断言来消除这个错误Response

.map((res: Response) => res.json())

http.post()将返回Observable<Response> mapResponse将需要.d.ts类型的对象。我认为这是当前TypeScript AngularJS <div ng-app="app" ng-controller="MainCtrl"> <button ng-click=refresh()></button> <bs-table ???></bs-table> </div> 中缺少的定义。