路由导航方法不重定向到组件
Routing navigate method not redirecting to component
从昨天开始,我一直在努力寻找解决问题的方法。
不幸的是,我做不到。
路由不起作用,即使在 url 我按路径更改时也是如此。
它仍然需要 HTML 来自 app.component.html
我的 app.module.ts :
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { MaterialModule } from './material.module';
import { HomeComponent } from './home/home.component';
import { RouterModule, Routes } from '@angular/router';
import { FormsModule } from '@angular/forms';
@NgModule({
declarations: [
AppComponent,
HomeComponent
],
imports: [
BrowserModule,
AppRoutingModule,
BrowserAnimationsModule,
MaterialModule,
FormsModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
还有我的 AppRoutingModule :
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { AppComponent } from './app.component';
import { HomeComponent } from './home/home.component';
const routes: Routes = [
{path: '', component: AppComponent},
{path: 'home', component: HomeComponent}
];
@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule]
})
export class AppRoutingModule { }
我只想在我放置 url: localhost:4200/home 时将我重定向到 HomeComponent html。
代码很简单,我遵循了几个教程。不明白希望得到大家的帮助。。谢谢大家!
确保 <router-outlet></router-outlet>
在您的 html 模板中的某处,因为您的组件将在那里呈现。
从昨天开始,我一直在努力寻找解决问题的方法。 不幸的是,我做不到。 路由不起作用,即使在 url 我按路径更改时也是如此。 它仍然需要 HTML 来自 app.component.html
我的 app.module.ts :
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { MaterialModule } from './material.module';
import { HomeComponent } from './home/home.component';
import { RouterModule, Routes } from '@angular/router';
import { FormsModule } from '@angular/forms';
@NgModule({
declarations: [
AppComponent,
HomeComponent
],
imports: [
BrowserModule,
AppRoutingModule,
BrowserAnimationsModule,
MaterialModule,
FormsModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
还有我的 AppRoutingModule :
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { AppComponent } from './app.component';
import { HomeComponent } from './home/home.component';
const routes: Routes = [
{path: '', component: AppComponent},
{path: 'home', component: HomeComponent}
];
@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule]
})
export class AppRoutingModule { }
我只想在我放置 url: localhost:4200/home 时将我重定向到 HomeComponent html。 代码很简单,我遵循了几个教程。不明白希望得到大家的帮助。。谢谢大家!
确保 <router-outlet></router-outlet>
在您的 html 模板中的某处,因为您的组件将在那里呈现。