从5 minute quick start开始,我一直在玩angular2 beta,遇到了一个让我难过的问题。
这是一个愚蠢的版本,显示我遇到的问题。首先,这是一个完美的hello world应用程序。
的package.json
Dumper
的index.html
{
"name": "...",
"version": "0.0.1",
"description": "...",
"author": {
"name": "...",
"email": "..."
},
"scripts": {
"tsc": "tsc",
"tsc:w": "tsc -w",
"lite": "lite-server",
"start": "concurrent \"npm run tsc:w\" \"npm run lite\" "
},
"license": "ISC",
"dependencies": {
"angular2": "2.0.0-beta.0",
"bootstrap": "^3.3.6",
"es6-promise": "^3.0.2",
"es6-shim": "^0.33.3",
"reflect-metadata": "^0.1.2",
"rxjs": "5.0.0-beta.0",
"systemjs": "0.19.6",
"zone.js": "^0.5.10"
},
"devDependencies": {
"concurrently": "^1.0.0",
"lite-server": "^1.3.1",
"typescript": "^1.7.3"
}
}
应用/ boot.ts
<head>
<title>Title</title>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link href="styles.css" rel="stylesheet" />
<!-- 1. Load libraries -->
<script src="node_modules/es6-shim/es6-shim.js"></script>
<script src="node_modules/angular2/bundles/angular2-polyfills.js"> </script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="node_modules/rxjs/bundles/Rx.js"></script>
<script src="node_modules/angular2/bundles/angular2.dev.js"></script>
<!-- 2. Configure SystemJS -->
<script>
System.config({
packages: {
app: {
format: 'register',
defaultExtension: 'js'
}
}
});
System.import('app/boot')
.then(null, console.error.bind(console));
</script>
</head>
<!-- 3. Display the application -->
<body>
<my-app></my-app>
</body>
应用/ app.component.ts
import {bootstrap} from 'angular2/platform/browser'
import {AppComponent} from './app.component'
import {AccountService} from './accounts/account.service'
bootstrap(AppComponent);
我实际上想要调用我的Web Api服务,所以我试图关注the docs for Http,我按如下方式更新boot.ts:
新app / boot.ts
import {Component, View} from 'angular2/core';
import {RegisterFormComponent} from './accounts/register-form.component'
@Component({
selector: 'my-app',
})
@View({
template: 'hello world',
})
export class AppComponent {
}
这就是事情窒息的地方。
Chrome给了我:
import {bootstrap} from 'angular2/platform/browser'
import {AppComponent} from './app.component'
import {AccountService} from './accounts/account.service'
import {HTTP_PROVIDERS} from 'angular2/http';
bootstrap(AppComponent, [HTTP_PROVIDERS]);
如果我尝试将HTTP_PROVIDERS设置为我的组件上的viewProvider,它也会失败。
有没有其他人有幸在Http中正确注入angular2 beta?
答案 0 :(得分:52)
当您尝试导入使用SystemJS时未包含在HTML中的内容时,会发生此错误。像Webpack这样的模块捆绑器可以为您处理所有这些。
对于你的情况,你必须添加一个单独的Http捆绑包,例如
<script src="https://code.angularjs.org/2.0.0-beta.0/http.dev.js"></script>
尝试使用路由器时,您会看到同样的错误而忘记添加路由器捆绑包。
检查来自@ pkozlowski-opensource&#39s的这两种配置之间的区别
bundle.js
文件中的所有内容捆绑在一起。很高兴它有所帮助。
答案 1 :(得分:11)
如果你正在使用npm,请在脚本标记中加入一个带有本地安装的http引用:
<script src="node_modules/angular2/bundles/http.dev.js"></script>