하이브리드/아이오닉

ionic2 현재 플랫폼 확인 방법

반응형

// platform 확인을 위한 모듈 추가
import { Platform } from 'ionic-angular';  


// app.component.ts 파일에서 플랫폼 확인


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@Component({ 
templateUrl: 'app.html' 
}) 
export class MyApp { 
    rootPage = HomePage; 
 
    constructor(platform: Platform) { 
        platform.ready().then(() => { 
 
            if (this.platform.is('android')) { 
                console.log("running on Android device!"); 
            } 
            if (this.platform.is('ios')) { 
                console.log("running on iOS device!"); 
            } 
            if (this.platform.is('mobileweb')) { 
                console.log("running in a browser on mobile!"); 
            } 
 
        }); 
    } 
}
cs



반응형