我在angular2中构建小应用程序,我试图使用webstorm修改文件,看看它是否在我的浏览器中更新。
我做了以下操作,到目前为止没有任何错误:
npm i -g angular-cli
ng new ponyracer
ng serve (working on background)
在这个档案中,我改变了#34; PonyRacer4566"到" dshbhs"但是在浏览器中没有任何更新。
import {Component} from 'angular2/core';
@Component({
selector: 'ponyracer-app',
template: '<h1>PonyRacer4566</h1>'
})
export class PonyRacerApp {
}
答案 0 :(得分:0)
更新文件时,您是否在终端中看到任何消息?它是否说文件已更改且构建已完成?
如果您认为这是angular-cli上的问题,您可以将其存档在官方存储库中:github.com/angular/angular-cli。
答案 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>