当我导入rxjs时,我在angular-cli中遇到此错误,并且不知道问题的根源是什么。
我写的路径是正确的,双重检查。我是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());
}
}
答案 0 :(得分:3)
我认为它应该是import 'rxjs/add/operator/map';
而不是import 'rxjs/add/operator.map';