Angular2 beta - 引导 HTTP_PROVIDERS - “意外令牌 <”
Posted
技术标签:
【中文标题】Angular2 beta - 引导 HTTP_PROVIDERS - “意外令牌 <”【英文标题】:Angular2 beta - bootstrapping HTTP_PROVIDERS - "Unexpected Token <" 【发布时间】:2016-03-27 20:41:53 【问题描述】:从5 minute quick start 开始,我一直在玩 angular2 测试版,遇到了一个让我难过的问题。
这是一个简化版本,显示了我遇到的问题。首先是一个完美运行的 hello world 应用程序。
package.json
"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"
index.html
<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/boot.ts
import bootstrap from 'angular2/platform/browser'
import AppComponent from './app.component'
import AccountService from './accounts/account.service'
bootstrap(AppComponent);
app/app.component.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
我想调用我的 Web Api 服务,所以我尝试关注 the docs for Http,我更新 boot.ts 如下:
新应用/boot.ts
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]);
这就是令人窒息的地方。
Chrome 给我:
uncaught SyntaxError: Unexpected token < - http:1
uncaught SyntaxError: Unexpected token < - angular2-polyfills.js:138
evaluating http://localhost:3000/angular2/http
error loading http://localhost:3000/app/boot.js
如果我尝试在我的组件上将 HTTP_PROVIDERS 设置为 viewProvider,它也会失败。
有没有其他人幸运地让 Http 在 angular2 beta 中正确注入?
Visual Studio 2015 Visual Studio 的 Node.JS 和 Node.JS 工具 使用'npm start'编译运行【问题讨论】:
这是***.com/questions/34387174的副本吗? @GünterZöchbauer 有点像。在这种情况下,他缺少 http 包,例如<script src=".../http.dev.js"></script>
类似的错误,但原因不同。我有一个工作应用程序在我引导 HTTP_PROVIDERS 时会中断。他的问题的解决方案是修复 index.html 中的 System.Config 调用,这对我来说不是问题,因为在我引导 HTTP_PROVIDERS 之前一切正常
@EricMartinez 你是我的英雄。昨天我看了这个很久,知道这是愚蠢的。如果您提交答案,我会接受。我想我希望 angular 会为我处理包含问题?如果 import HTTP_PROVIDERS 语句不自动包含 JS,它的意义何在?大声笑:)
@Cosmosis 为了回答你的问题,Angular2 使用未来的 es6-module 导入格式。最终,浏览器将原生支持import
语法。在此之前,需要使用诸如 system.js 之类的 polyfill。
【参考方案1】:
当您在使用 SystemJS 时尝试导入 HTML 中未包含的内容时,会发生此错误。像 Webpack 这样的模块打包器会为您处理所有这些。
例如,对于您的情况,您必须添加作为单独捆绑包的 Http 捆绑包
<script src="https://code.angularjs.org/2.0.0-beta.0/http.dev.js"></script>
您在尝试使用路由器时会看到同样的错误,但您忘记添加路由器捆绑包。
从@pkozlowski-opensource 的 repos 中检查这两种配置之间的区别
Using SystemJS :对于这种情况,他必须添加 http 包,或者如果他想使用路由器包。 Using Webpack :在这种情况下,Webpack 为您捆绑了bundle.js
文件中的所有内容。
很高兴它有帮助。
【讨论】:
我发现 JSPM 也适用于捆绑 angular2 模块。 @brando 除非您想将其用作单独的独立包,否则 JSPM 已经提供了 angular2jspm install angular2
。
唉,这个错误信息应该比这个好。【参考方案2】:
如果您使用的是 npm,请在脚本标签中包含对本地安装的 http 引用:
<script src="node_modules/angular2/bundles/http.dev.js"></script>
【讨论】:
这应该是截至 2016 年 3 月的公认答案。如果其他人遇到此问题,这就是解决方法。以上是关于Angular2 beta - 引导 HTTP_PROVIDERS - “意外令牌 <”的主要内容,如果未能解决你的问题,请参考以下文章
Angular2 beta 7 上的 HashLocationStrategy
Angular2 beta.12 和 RxJs 5 beta.3 的可观察到的错误
Angular2 beta 中的 DynamicComponentLoader:“元素处没有组件指令”