我在 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 {
}