0

我已经使用路由开发了一个 Angular2 应用程序。

我的问题场景是:

我有一个具有不同 HTML 和 CSS 的登录页面。成功登录后,我会重定向到另一个具有不同 HTML 和 CSS 的页面。但我有 index.html(login page) 作为我的主要布局。因此我需要了解如何使用多种布局?

我做了一些研发,但我不明白如何实施?

请找到以下代码:

1) app.routing.module

import { NgModule } from '@angular/core';
import { Routes, Router, RouterModule } from '@angular/router';
import { AuthGuard } from './guards/auth.guard';
import { LoginComponent } from './components/login/login.component';

const routes: Routes = [
{
    path: '',
    redirectTo: '/login',
    pathMatch: 'full'
},
{
    path: 'login',
    component: LoginComponent
},
{
    path: 'employee',
    component: EmployeeComponent,
    canActivate: [AuthGuard]
}];
export class AppRoutingModule {   }
export const routedComponents = [LoginComponent,EmployeeComponent];

2) 应用组件

import { Component} from '@angular/core';
@Component({
           selector: 'my-app',
           template: `
          <router-outlet></router-outlet>
          `
          })
export class AppComponent {
        constructor() {
        }
}

3) 应用模块

import { NgModule }      from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import {HttpModule} from '@angular/http';
import { AppComponent }   from './app.component';
import { AppRoutingModule, routedComponents } from './app-routing.module';
import { AuthGuard } from './guards/auth.guard';


 @NgModule({
     imports: [BrowserModule,
               HttpModule,
               AppRoutingModule
      ],
     declarations: [AppComponent,
                    routedComponents
     ],
     providers: [AuthGuard],
     bootstrap: [AppComponent]

    })
 export class AppModule { }

4) 索引.html

 <my-app>

 </my-app>

任何帮助将不胜感激!

谢谢!!

4

2 回答 2

2
  • 从 index.html 中删除所有 CSS 并为登录创建单独的组件,另一个组件说 home 用于其他功能。
  • 分别在 login 组件和 home 组件中加载 login 和 home 的 CSS。
  • 为登录和主页创建单独的路由,将所有其他功能路由放在主页路由中作为子路由。请找到以下代码:

    {
    path: 'login',
    component: LoginComponent
    },
    {
      path: 'home',
      component: HomeComponent,
      children: [
           {
            path: 'childPage',
            component: childPageComponent
           }]
    }
    
  • 使用下面的行导航到子页面:

    this.router.navigate(['/home/childPage'])
    

谢谢!!!

于 2016-12-21T14:18:10.687 回答
0

angular2组件样式

如本参考资料所述:

我们有几种方法可以给组件添加样式:

  • 在模板 HTML 中内联
  • 通过设置样式
  • 或带有 CSS 导入的 styleUrls 元数据

此外,我建议您在一个模块中创建像树(层次结构)这样的组件(和路由)。检查用户登录状态 您需要一项共享服务(例如 authservice)。

于 2016-12-13T07:50:24.090 回答