我正在尝试将Angular1应用程序重写为Angular 2应用程序。 我在angular-cli的帮助下启动了这个新项目,但我阻止了导入http服务。
我在main.ts中添加了以下行
import { HTTP_PROVIDERS } from '@angular/http';
这个在我的服务中需要使用http
import { Http, Response } from '@angular/http';
有两行我有以下错误:
Cannot find module '@angular/http'
您对我能错过的内容有所了解吗? 谢谢。
答案 0 :(得分:0)
您需要在index.html中使用此文件来加载这些模块: -
<script src="node_modules/angular2/bundles/http.dev.js"></script>
或
<script src="node_modules/angular2/bundles/http.js"></script>
模块中的任何一个
编辑: -
我认为如果你在开发模式下使用beta,你只需链接第一个文件。虽然存在两个文件