我在angular 2 RC1中使用了异步管道,导致对服务器的多个请求。 在Angular2 beta 16中,我使用了share方法来解决这个问题。
import {Http, Headers, RequestOptions, URLSearchParams} from '@angular/http';
在构造函数中请求this._http.get(path, options)
在测试版中,我使用this._http.get(path, options).share()
答案 0 :(得分:0)
import 'rxjs/add/operator/share';