首页 > 建站教程 > 小程序、公众号 >  微信小程序获取系统是安卓还是IOS正文

微信小程序获取系统是安卓还是IOS

在小程序的项目中往往需要获取手机操作系统。例如,可能在IOS下需要显示而安卓下不需要显示,这时就要用到微信小程序提供的wx.getSystemInfo接口:
getSystemPlatform:function(){
    var that = this;
    wx.getSystemInfo({
      success:function(res){
        if(res.platform == "devtools"){
            //PC
        }else if(res.platform == "ios"){
            //IOS
        }else if(res.platform == "android"){
            //android
        }
      }
    })
},
官方文档:https://developers.weixin.qq.com/miniprogram/dev/api/base/system/system-info/wx.getSystemInfo.html