类型“Observable”上不存在属性“toPromise”

2024-02-19

import { Headers, Http } from '@angular/http';

@Injectable()
export class PublisherService{

    private publishersUrl = 'app/publisher';

    constructor(private http: Http) { }

    getPublishers(): Promise<Publisher[]>{
        return this.http.get(this.publishersUrl)
                   .toPromise()
                   .then(response => response.json().data) 
                   .catch(this.handleError);
    }
}    

我收到此错误:

类型“Observable”上不存在属性“toPromise”。any


您需要像这样添加运算符:

import 'rxjs/add/operator/toPromise';

这是您想要使用的每个 rxjs 运算符所必需的。

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

类型“Observable”上不存在属性“toPromise” 的相关文章

随机推荐