子模块的Angular 5路由不起作用

时间:2018-03-23 12:40:01

标签: angular typescript angular-routing angular-router

我正在使用Angular 5开发Web应用程序。我是使用Typescript的Angular的新手。现在我正在为我的应用程序模块配置路由。但它不起作用并抛出错误。

这是我的index.html文件

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Web</title>
  <base href="/">

  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
  <app-root></app-root>
  <router-outlet></router-outlet>
</body>
</html>

我在app文件夹下创建了一个app-routing.module.ts文件。

    import { NgModule } from '@angular/core';
    import { Routes, RouterModule } from '@angular/router';
    import { AppComponent } from './app.component';


    const routes: Routes = [ 
        { path: '', loadChildren: './web/web.module#WebModule' },
    ];

    @NgModule({
        imports: [RouterModule.forRoot(routes)],
        exports: [RouterModule]
    })
    export class AppRoutingModule {}


Import that routing class in the app.module.ts file

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { RouterModule, Route } from '@angular/router';
import { AppRoutingModule } from './app-routing.module'

import { AppComponent } from './app.component';


@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    AppRoutingModule,
    BrowserModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

然后创建了另一个模块web/web.module.ts

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { HomeComponent } from './home/home.component';
import { WebRoutingModule  } from './web-routing.module';

@NgModule({
  imports: [
    CommonModule,
    WebRoutingModule
  ],
  declarations: [HomeComponent]
})
export class WebModule { }

这是我的web-routing.module.ts

import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { HomeComponent } from './home/home.component';

const routes: Routes = [
    { path: '', component: HomeComponent }
];

@NgModule({
    imports: [RouterModule.forChild(routes)],
    exports: [RouterModule]
})
export class WebRoutingModule { }

如您所见,我正在渲染HomeComponent。我创建了主组件用户web/home/文件夹。

根据我的代码,如果我像这样访问我的网站localhost:4200,它应该在index.html文件中的router-out中呈现主组件HTML。现在它不会渲染主组件HTML。它正在渲染index.html但没有home,组件在router-outlet中被替换。那么,我的代码有什么问题,我该如何解决呢?

2 个答案:

答案 0 :(得分:8)

<router-outlet></router-outlet>必须位于app-home的标记中,而不是在index.html文件中才能正常工作

我刚刚在我的一个项目中设置了路由。

我的app.component.ts看起来像这样

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

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

export class AppComponent {
}

我的app.component.html看起来像这样

<router-outlet></router-outlet>

我的app-routing.module.ts看起来像这样

import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';

// Layouts
import { MasterComponent } from './components/layouts/master/master.component';
// Main Pages
import { HomeComponent } from './components/pages/home/home.component';
import { PageNotFoundComponent } from './components/pages/page-not-found/page-not-found.component';

const routes: Routes = [
  { path: '', component: MasterComponent, children: [
    { path: '', component: HomeComponent },
  ] },
  { path: '**', component: PageNotFoundComponent },
];

@NgModule({
  imports: [RouterModule.forRoot(routes)],
  exports: [RouterModule]
})
export class AppRoutingModule { }

我的index.html文件也是这样的

<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Office</title>
  <base href="/">

  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
  <app-root></app-root>
</body>
</html>

答案 1 :(得分:0)

尝试在app.module的导入数组

中提供您的web.module