我是入门者,我正在尝试创建一个简单的角组件但我有问题,我的组件未显示在索引页面中请帮助我..
这是我的组件,名称为“ List.Component.ts”:
import { Component } from '@angular/core';
@Component({
selector:'navBar',
templateUrl:'./navBarTemplate.html'
})
export class navBar {
constructor(){
}
}
这是我的模板html代码:
<ul>
<li>Test-1</li>
<li>Test-2</li>
<li>Test-3</li>
</ul>
并且我将组件导入了“ app.module.ts”文件:
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
//here is my component
import { navBar } from './List.Component';
@NgModule({
imports: [ BrowserModule ],
declarations: [ AppComponent, navBar ],
bootstrap: [ AppComponent ]
})
export class AppModule { }
但是在索引页面中,角度只是显示为“ Hello Angular”。
我的索引页面:
<!DOCTYPE html>
<html>
<head>
<title>Angular QuickStart</title>
<base href="/">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
<!-- Polyfill(s) for older browsers -->
<script src="node_modules/core-js/client/shim.min.js"></script>
<script src="node_modules/zone.js/dist/zone.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="systemjs.config.js"></script>
<script>
System.import('main.js').catch(function(err){ console.error(err); });
</script>
</head>
<body>
<NavBar></NavBar>
<my-app>Loading AppComponent content here ...</my-app>
</body>
</html>
您需要添加app.component.html中的<NavBar></NavBar>
在index.html文件中,导航栏选择器中有错字。
更改为
<navBar></navBar>