首先,我是Angular 2的新手,我使用Angular cli工具创建了新项目。
我在这里推送了我的代码(而不是在这里粘贴所有文件):
https://github.com/tsingh38/Angular2
当我运行服务时,服务启动成功,但浏览器只显示“正在加载”。
根据我目前的研究,package.json和其他文件都很好。 如果需要更多信息,我会回答。
感谢。
答案 0 :(得分:1)
转到您的src/index.html
文件并进行更改:
<app-root>Loading...</app-root>
对此:
<my-app>Loading...</my-app>
为什么呢?因为在src/app/app.component.ts
您的选择器是my-app
:
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'app works!';
}