微信小程序获取手机系统信息的方法【附源码下载】

时间:2021-05-18

本文实例讲述了微信小程序获取手机系统信息的方法。分享给大家供大家参考,具体如下:

1、效果展示

2、关键代码

index.wxml布局文件代码

<view>手机型号:{{mobileModel}}</view><view>手机像素比:{{mobileePixelRatio}}</view><view>窗口宽度:{{windowWidth}}</view><view>窗口高度:{{windowHeight}}</view><view>微信设置的语言:{{language}}</view><view>微信版本号:{{version}}</view>

index.js逻辑文件代码

var app = getApp()Page({ data: { mobileModel:'', mobileePixelRatio:'', windowWidth:'', windowHeight:'', language:'', version:'' }, onLoad: function () { var that=this; wx.getSystemInfo({ success: function(res) { that.setData({ mobileModel:res.model, mobileePixelRatio:res.pixelRatio, windowWidth:res.windowWidth, windowHeight:res.windowHeight, language:res.language, version:res.version }) } }) }})

这里通过wx.getSystemInfo函数来获取手机系统信息。具体参数说明与用法还可参考官网:https://mp.weixin.qq.com/debug/wxadoc/dev/api/systeminfo.html#wxgetsysteminfoobject

3、源代码点击此处本站下载

希望本文所述对大家微信小程序开发有所帮助。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章