找不到外部模块’angular2 / angular2′ – Angular2 w / Typescript

前端之家收集整理的这篇文章主要介绍了找不到外部模块’angular2 / angular2′ – Angular2 w / Typescript前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在通过关于angular.io的一步一步的教程(角度2).我使用的是typcript.尝试编译时出现以下错误

找不到外部模块’angular2 / angular2′

使用watch命令.

main.ts

import {Component,View,bootstrap} from 'angular2/angular2';

@Component({
  selector: 'my-app'
})

@View({
  template: '<h1>My first Angular 2 App</h1>'
})

class AppComponent {
}

bootstrap(AppComponent);

的index.html

<!DOCTYPE html>
<html>
  <head>
    <script src="https://jspm.io/system@0.16.js"></script>
    <script src="https://code.angularjs.org/2.0.0-alpha.23/angular2.dev.js"></script>
  </head>
  <body>

    <my-app></my-app>

    <script>
      System.import('main');    
    </script>

  </body>
</html>

Q为什么发生这个错误

将这些文件添加到头部将为您提供最新的Angular2版本.
<script src="https://github.jspm.io/jmcriffey/bower-traceur-runtime@0.0.87/traceur-runtime.js"></script>
<script src="https://jspm.io/system@0.16.js"></script>
<script src="https://code.angularjs.org/2.0.0-alpha.26/angular2.dev.js"></script>

资料来源:Angular.io: 5 Minute Quickstart

原文链接:https://www.f2er.com/angularjs/142934.html

猜你在找的Angularjs相关文章