Angular-cli在导入rxjs时显示错误

时间:2017-07-04 11:14:05

标签: angular rxjs angular-cli

当我导入rxjs时,我在angular-cli中遇到此错误,并且不知道问题的根源是什么。

angular-cli error

我写的路径是正确的,双重检查。我是Angular的新手,感觉很困难。 以下是源代码链接https://github.com/EgomortIncognitus/bookstore

books.service.ts:

import { Injectable } from '@angular/core';
import { Http } from '@angular/http';
import 'rxjs/add/operator.map';

@Injectable()
export class BooksService {

  constructor(private http: Http) { }

  getAllBooks() {
    return this.http.get('data/books.json').map(res => res.json());
  }
}

1 个答案:

答案 0 :(得分:3)

我认为它应该是import 'rxjs/add/operator/map';而不是import 'rxjs/add/operator.map';