本文介绍了“Observable<Response>"类型上不存在属性“toPromise"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
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);
}
}
我收到此错误:
属性 'toPromise' 不存在于类型 'Observable'.any
推荐答案
你需要像这样添加操作符:
You need to add the operator like this:
import 'rxjs/add/operator/toPromise';
这对于您要使用的每个 rxjs 运算符都是必需的.
This is needed for every rxjs operator you want to use.
这篇关于“Observable<Response>"类型上不存在属性“toPromise"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!