微信小程序 --- 获取设备信息

时间:2023-03-08 23:40:03
微信小程序 --- 获取设备信息

获取设备信息: 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);
};
});
}