0

我在 angular2 中构建小应用程序,并尝试使用 webstorm 修改文件以查看它是否在我的浏览器中更新。

我做了以下事情,到目前为止没有任何错误:

npm i -g angular-cli
ng new ponyracer
ng serve   (working on background)

在这个文件中,我将“PonyRacer4566”更改为“dshbhs”但是浏览器中没有任何更新。

import {Component} from 'angular2/core';
@Component({
    selector: 'ponyracer-app',
    template: '<h1>PonyRacer4566</h1>'
})
export class PonyRacerApp {
}
4

1 回答 1

0

我必须将这些行添加到我的 index.html 中才能使其正常工作;

<script src="vendor/es6-shim/es6-shim.js"></script>
  <script src="vendor/systemjs/dist/system-polyfills.js"></script>
  <script src="vendor/angular2/bundles/angular2-polyfills.js"></script>
  <script src="vendor/systemjs/dist/system.src.js"></script>
  <script src="vendor/rxjs/bundles/Rx.js"></script>

  <script src="vendor/angular2/bundles/angular2.dev.js"></script>
  <script src="vendor/angular2/bundles/http.dev.js"></script>
  <script src="vendor/angular2/bundles/router.dev.js"></script>
于 2016-02-26T22:36:44.633 回答