如何检测 Ionic 2 中用户设备的大小

How to detect if the user device big or small in Ionic 2

基本上我想写一个函数来检测设备的大小是大还是小

例如: 三星 S6、S7、S8 不允许使用功能,因为它们的尺寸不大,例如 iPad 或 Samsung Tab。

您可以使用 Platform.is() 来实现。

import { Platform } from 'ionic-angular';

constructor(public platform: Platform)

public myFunction(){
  if(this.platform.is('tablet'){
    //execute function
  }
}

希望对您有所帮助。