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

时间:2018-03-01 20:06:06   收藏:0   阅读:261

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

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!