【发布时间】:2017-10-10 10:54:01
【问题描述】:
我有一个简单的应用程序 - 3 个组件,一页。问题是第一个组件呈现,但我创建的两个自定义组件 - 他们没有。我已向它们添加了未呈现的模板数据,index.html 将仅加载预览文本,但不加载组件数据。我真的很感激一双额外的眼睛,我看不到我忽略了什么,解释会很有用。我对此还是陌生的。谢谢
app.module.ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import { HeadComponent } from './head.component';
import { FooterComponent } from './footer.component';
@NgModule({
imports: [ BrowserModule ],
declarations: [ AppComponent, HeadComponent, FooterComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule { }
app.component.ts
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'my-app',
template: `
<h1>This is my-app</h1>
<p><strong> {{id}}</strong></p>
<p><strong> {{title}}</strong></p>
<p><strong> {{description}}</strong></p>
`,
})
export class AppComponent implements OnInit{
id:string;
title:string;
description:string;
constructor(){
console.log('constructor called.')
}
// lifecycle hook
ngOnInit(){
this.id = '1';
this.title = 'Full Stack - Angular 2 Java';
this.description = 'lorum isum is some text..';
}
}
interface jobInfo {
id:string;
title:string;
description:string;
}
head.component.ts
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'my-head',
template: `
<div>
<h1>This is my-header</h1>
<label>testtest</label>
</div>
`,
})
export class HeadComponent implements OnInit{
id:string;
title:string;
description:string;
constructor(){
console.log('constructor called.')
}
// lifecycle hook
ngOnInit(){
this.id = '1';
this.title = 'Full Stack - Angular 2 Java';
this.description = 'lorum isum is some text..';
}
}
interface jobData {
id:string;
title:string;
description:string;
}
footer.component.ts
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'my-foot',
template: `
<h1>This is my-foot</h1>
<label>testtest</label>
`,
})
export class FooterComponent implements OnInit{
constructor(){
console.log('constructor called.')
}
// lifecycle hook
ngOnInit(){
}
}
interface jobData {
id:string;
title:string;
description:string;
}
【问题讨论】:
-
你好像没用过FooterComponent和HeadComponent
-
我建议你看一些教程,你忽略了一些非常明显的东西
-
它们在 app.module.ts 的声明中
-
@Jota.Toledo ??
标签: angular templates components render