所以我开始学习 Angular,我从 2.0 开始,因为它会打破 1 到那时我正在尝试从 Angular 网站获取快速启动应用程序工作
我按照说明设置了代码,并在 IIS 中设置了一个网站以指向源代码目录,但出现错误。
Uncaught (in promise) Error loading "app" at http://localhost:88/app.js
http://localhost:88/app.js:1:46: Unexpected token angular2
有没有人在 IIS 中设置了这个应用程序,如果有,你能帮忙吗?
文件 app.js:
import {Component, Template, bootstrap} from angular2/angular2;
//Annotation section
@Component({
selector: 'my-app'
})
@Template({
inline: '<h1>Hello {{name}}</h1>'
})
//Component controller
class MyAppConponent{
constuctor(){
this.name = 'Alice';
}
}
bootstrap(MyAppConponent);
文件 index.html
<!-- index.html -->
<html>
<head>
<title>Angular 2 Quickstart</title>
<script src="/quickstart/dist/es6-shim.js"></script>
</head>
<body>
<!-- The app component created in app.es6 -->
<my-app></my-app>
<script>
// Rewrite the paths to load the files
System.paths = {
'angular2/*':'/quickstart/angular2/*.js', // Angular
'rtts_assert/*': '/quickstart/rtts_assert/*.js', // Runtime assertions
'app': 'app.js' // The my-app component
};
// Kick off the application
System.import('app');
</script>
</body>
</html>
另外-我确实将应用程序文件命名为app.es6,正如网站所示,但我看到扩展是否有所不同,因为es6是新的javascript标准,浏览器可能还不支持它,我得到了
GET http://localhost:88/app.es6 404(未找到)
作为该扩展名的错误。
我正在为我的浏览器使用 Chrome Canary