gpt4 book ai didi

html - 在 angular2 的模板中使用 templateUrl

转载 作者:太空宇宙 更新时间:2023-11-03 21:15:44 27 4
gpt4 key购买 nike

我刚刚开始学习 Angular2,但一直卡在需要组合 2 个组件的阶段。

这是我的 app.component.ts

 import { Component } from '@angular/core';

@Component({
selector: 'app-root',
template: './app.component.html <app-home></app-home>',
styleUrls: ['./app.component.css']
})
export class AppComponent {
mylogo = 'ABC Engineering';
headlist = ["Home", "About", "Portfolio", "Pricing", "Contact"];
technology = ["HTML", "CSS", "JavaScript", "jQuery", "AngularJS", "PHP"];
}

这是我的 app.module.ts

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';

import { AppComponent } from './app.component';
import { HomeComponent } from './home/home.component';
import { AboutComponent } from './about/about.component';

@NgModule({
declarations: [
AppComponent,
HomeComponent,
AboutComponent,
],
imports: [
BrowserModule,
FormsModule,
HttpModule
],

providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }

它给出如图所示的输出。 Output

它没有显示 app.component.html 的输出!但它确实显示了“home.component.html”中的内容。如何修复它以显示“app.component.html”中的内容?

最佳答案

你可以使用

   @Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})

   @Component({
selector: 'app-root',
template: '<app-home></app-home>',
styleUrls: ['./app.component.css']
})

但不要在单个组件中组合或混合两者。

关于html - 在 angular2 的模板中使用 templateUrl,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42469814/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com