2017-06-20 7 views
0

アプリコンポーネントはちょうどイメージを持っています...そこから私は何もクリックせずにログインページにリダイレクトする必要があります。誰も私にそれが起こる方法を説明することができますか?anguar-4でapp.componentからログインページにリダイレクトしますか?

import { Component } from '@angular/core'; 
@Component({ 
selector: 'app-root', 
templateUrl: './app.component.html', 
styleUrls: ['./app.component.css'] 
}) 
export class AppComponent { 
title = 'app'; 

}/// app.component.ts 

import { BrowserModule } from '@angular/platform-browser'; 
import { NgModule } from '@angular/core'; 

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

@NgModule({ 
    declarations: [ 
    AppComponent, 
    LoginComponent 
], 
imports: [ 
BrowserModule 
], 
providers: [], 
bootstrap: [AppComponent] 
}) 
export class AppModule { } // app.module.ts 

答えて

0

あなたは異なる経路(loginhome、など)を定義し、@angular/routerモジュールを使用する必要があります。その後、コントローラーで次のようなものを使用することができます:this.router.navigate(['login']);

詳細については、official documentationを参照してください。

関連する問題