1. 首页
  2. 移动开发
  3. 其他
  4. 微信小程序适配iphonex

微信小程序适配iphonex

上传者: 2021-04-02 01:35:41上传 PDF文件 30.14KB 热度 24次
// 在app.js中判断是否是哪种设备 globalData: { isIphoneX: false, userInfo: null }, onShow:function(){ let that = this; wx.getSystemInfo({ success: res=>{ // console.log('手机信息res'+res.model) let modelmes = res.model; if (modelmes.search('iPhone X') != -1) { that.globalData.isIphoneX = true } } }) }, 在需要引用的页面js
下载地址
用户评论