似乎无法在 Observable 上使用 'first()'(Angular 中的 rxjs)
can't seem to use 'first()' on Observable(rxjs in Angular)
我读到了 RXJS 中的这个很棒的功能,理论上它允许我只订阅一个响应,但似乎无法实现它。相反,我收到了这个错误,
"Property 'first' does not exist on type 'Observable'."
尽管我只是从现有示例中复制粘贴。
这是我的代码:
implementHash( token ){
console.log('trying to implement hash', token);
const req = this.http.get('http://localhost:3003/token/' + token );
const sub = req
//.first()
.subscribe( res =>{
sub.unsubscribe; // trying to avoid this line
});
};
你需要
import 'rxjs/add/operator/first'
;
在你的文件中。
将 import 'rxjs/add/operator/first'
添加到您的 component.ts 文件。
首先来自进口。
我读到了 RXJS 中的这个很棒的功能,理论上它允许我只订阅一个响应,但似乎无法实现它。相反,我收到了这个错误,
"Property 'first' does not exist on type 'Observable'."
尽管我只是从现有示例中复制粘贴。 这是我的代码:
implementHash( token ){
console.log('trying to implement hash', token);
const req = this.http.get('http://localhost:3003/token/' + token );
const sub = req
//.first()
.subscribe( res =>{
sub.unsubscribe; // trying to avoid this line
});
};
你需要
import 'rxjs/add/operator/first'
;
在你的文件中。
将 import 'rxjs/add/operator/first'
添加到您的 component.ts 文件。
首先来自进口。