e0yu

获取设备信息: wx.getSystemInfo 

model:手机型号

pixelRatio:设备像素比

windowWidth:窗口宽度

windowHeight:窗口高度

language:语言

version:微信版本号

btnclick:function(){
    wx.getSystemInfo({
        success:function(res){
            console.log(res);
            console.log(res.model);
            console.log(res.pixelRatio);
            console.log(res.windowWidth);
        };
    });
}

 

分类:

技术点:

相关文章:

  • 2021-09-23
  • 2021-12-18
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-07-15
  • 2022-12-23
  • 2021-07-03
  • 2021-12-04
  • 2021-12-05
  • 2021-12-05
相关资源
相似解决方案