Idea没有看到导入

时间:2016-12-20 14:35:45

标签: javascript angular typescript intellij-idea

我尝试在Idea IDE中使用angular2。

我的代码有效(我尝试编译并执行它),但ide显示: enter image description here

有没有办法配置Idea来隐藏这个错误?

1 个答案:

答案 0 :(得分:2)

这是因为你错过了两件事:从'rxjs / add / operator / switchMap'和'from'关键字中提到要导入的内容。

改变这个:

import 'rxjs/add/operator/switchMap'

到此:

import {switchMap} from 'rxjs/add/operator/switchMap'

或者,它可能对你有用:

import * as switchMap from 'rxjs/add/operator/switchMap'