代码之家  ›  专栏  ›  技术社区  ›  Efim Rozovsky

似乎无法在Observable上使用“first()”(角度中的rxjs)

  •  4
  • Efim Rozovsky  · 技术社区  · 7 年前

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

    虽然我只是复制粘贴现有的例子。

    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
        });
    };
    
    2 回复  |  直到 6 年前
        1
  •  5
  •   alexKhymenko    7 年前

    你需要

    import 'rxjs/add/operator/first' ;

        2
  •  2
  •   Sajeetharan    7 年前

    添加 import 'rxjs/add/operator/first'

    它首先来自进口。