2017-06-20 37 views
0

應用程序組件只有圖像...從那裏我必須重定向到登錄頁面,而不點擊任何東西。任何人都可以解釋我是如何發生的?從app.component到anguar-4重定向到登錄頁面?

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

你必須使用@angular/router模塊,定義不同的路由(loginhome等)。當你這樣做後,你可以在你的控制器中使用這樣的東西:this.router.navigate(['login']);

詳情請參閱official documentation