2017-09-20 69 views
1

我在RXJS中讀到了這個令人敬畏的功能,理論上我只能訂閱一個響應,但似乎無法實現它此錯誤似乎無法在Observable上使用'first()'(角度中的rxjs)

「屬性'第一'在類型'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 
    }); 
}; 

回答

0

import 'rxjs/add/operator/first'添加到您的component.ts文件中。

它來自進口第一。