로메오의 블로그

[Angular] ionic angular router 본문

Frontend/angular

[Angular] ionic angular router

romeoh 2020. 1. 13. 00:44
반응형

ionic 차례

$ ionic --version
5.4.13
$ cordova --version
9.0.0 (cordova-lib@9.0.1)
$ ng --version
     _                      _                 ____ _     ___
    / \   _ __   __ _ _   _| | __ _ _ __     / ___| |   |_ _|
   / △ \ | '_ \ / _` | | | | |/ _` | '__|   | |   | |    | |
  / ___ \| | | | (_| | |_| | | (_| | |      | |___| |___ | |
 /_/   \_\_| |_|\__, |\__,_|_|\__,_|_|       \____|_____|___|
                |___/
    
Angular CLI: 8.1.3
Node: 10.16.3
OS: darwin x64
Angular: 8.1.3

## 2020년 1월 현재
$ ionic --version
5.4.16
$ cordova --version
10.0.0
$ ng --version
     _                      _                 ____ _     ___
    / \   _ __   __ _ _   _| | __ _ _ __     / ___| |   |_ _|
   / △ \ | '_ \ / _` | | | | |/ _` | '__|   | |   | |    | |
  / ___ \| | | | (_| | |_| | | (_| | |      | |___| |___ | |
 /_/   \_\_| |_|\__, |\__,_|_|\__,_|_|       \____|_____|___|
                |___/
    
Angular CLI: 10.0.8
Node: 10.16.3
OS: darwin x64
Angular: 10.0.14

## 2021년 1월 현재

프로젝트 생성

$ ionic start ionic-tutorial sidemenu --type=angular
$ code ionic-tutorial

Page ts파일 생성하기

$ ionic g page welcome

 

router 변경

기본으로 위와 같이 home 화면이 초기화면으로 설정되어 있는데

방금 만든 welcome 화면으로 변경하겠습니다.

 

src/app/app.component.ts

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

import { Platform } from '@ionic/angular';
import { SplashScreen } from '@ionic-native/splash-screen/ngx';
import { StatusBar } from '@ionic-native/status-bar/ngx';
import { Router } from '@angular/router';

@Component({
  selector: 'app-root',
  templateUrl: 'app.component.html',
  styleUrls: ['app.component.scss']
})
export class AppComponent {
  public appPages = [
    {
      title: 'Home',
      url: '/home',
      icon: 'home'
    },
    {
      title: 'List',
      url: '/list',
      icon: 'list'
    }
  ];

  constructor(
    private platform: Platform,
    private splashScreen: SplashScreen,
    private statusBar: StatusBar,
    private router:Router
  ) {
    this.initializeApp();
  }

  initializeApp() {
    this.platform.ready().then(() => {
      this.statusBar.styleDefault();
      this.router.navigateByUrl('welcome')
      this.splashScreen.hide();
    });
  }
}

위코드로 수정하면 welcome 화면으로 변경됩니다.

5초뒤에 home 화면으로 넘어가도록 수정합니다.

 

router 페이지 이동

src/app/welcome/welcome.page.ts

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

@Component({
  selector: 'app-welcome',
  templateUrl: './welcome.page.html',
  styleUrls: ['./welcome.page.scss'],
})
export class WelcomePage implements OnInit {

  constructor(
    private router:Router
  ) { }

  ngOnInit() {
    setTimeout(() => {
      this.router.navigateByUrl('home')
    }, 5000)
  }

}

5초뒤에 home 화면으로 이동합니다.

 

 

 

ionic 차례

반응형
Comments