我嘗試angular2在ES5方式使用此代碼:嘗試angular2時未定義角度?
<html>
<head>
<script src="https://code.angularjs.org/2.0.0-alpha.31/angular2.sfx.dev.js"></script>
<script>
function AppComponent() {}
AppComponent.annotations = [
new angular.Component({
selector: 'my-app'
}),
new angular.View({
template: '<h1>My first Angular 2 App</h1>'
})
];
document.addEventListener('DOMContentLoaded', function() {
angular.bootstrap(AppComponent);
});
</script>
</head>
<body>
<my-app></my-app>
</body>
</html>
在Chrome中我收到討厭的錯誤:
Uncaught ReferenceError: angular is not defined
特別是與這行:
new angular.Component({
我外部資源米也卡住了。 Angular 2 [顯示數據指南](https://angular.io/docs/js/latest/guide/displaying-data.html)使用這種格式,但我還沒有在其他指南中找到它。 –