Я настроил маршруты, но компонент не отображается при инициализации приложения. Мне нужен компонент posts
в компоненте blog
, так как блог уже загружается правильно.
app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { AppRoutingModule } from './app.routing.module';
import { BlogModule } from './blog/blog.module';
import { CandidatosModule } from './candidatos/candidatos.module';
import { AboutModule } from './about/about.module';
import { NavbarModule } from './navbar/navbar.module';
@NgModule({
declarations: [
AppComponent,
],
imports: [
BrowserModule,
AppRoutingModule,
BlogModule,
CandidatosModule,
AboutModule,
NavbarModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
app.component.html:
<app-navbar></app-navbar>
<!-- corpo da página -->
<router-outlet></router-outlet>
app.routing.module.ts:
const appRoutes: Routes = [
{ path: '', component: BlogComponent},
{ path: 'blog', component: BlogComponent},
{ path: 'candidatos', component: CandidatosComponent},
{ path: 'sobre', component: AboutComponent},
];
blog.component.html:
<div id="conteudo" class="container-fluid">
<div class="row">
<div class="col-10">
hello, world!
<router-outlet></router-outlet>
</div>
<!-- direita -->
<div class="col-md-2">
<app-aside></app-aside>
</div>
</div>
</div>
blog.routing.module.ts:
const blogRoutes: Routes = [
{ path: 'blog', component: BlogComponent, children: [
{ path: '', component: PostsComponent },
{ path: 'posts', component: PostsComponent },
{ path: 'news', component: NewsComponent },
{ path: 'estudos', component: EstudosComponent }
]
}
];
печать с указанием места загрузки компонента сообщений: 1