作者:零乱772_553 | 来源:互联网 | 2023-10-12 04:20
绑定事件获取当前设备信息
pages/study/index.wxml
<text>pages/study/index.wxmltext>
<view>{{text}}view>
<button type&#61;"primary" bindtap&#61;"getInfo">点击获取信息button>
pages/study/index.ts
Page({data: {text: &#39;&#39;},onLoad() {},onReady() {},onShow() {},onHide() {},onUnload() {},onPullDownRefresh() {},onReachBottom() {},onShareAppMessage() {},getInfo() {wx.getSystemInfo({success: (res) &#61;> {console.log(&#39;res&#39;, res);let str &#61; &#96;设备&#xff1a;${res?.model}, 平台&#xff1a;${res?.platform}&#96;this.setData({text: str})}})}
})
返回信息
{SDKVersion: "2.22.1"batteryLevel: 0benchmarkLevel: 1bluetoothEnabled: truebrand: "devtools"cameraAuthorized: truedeviceOrientation: "portrait"devicePixelRatio: 3enableDebug: falseerrMsg: "getSystemInfo:ok"fontSizeSetting: 16language: "zh_CN"locationAuthorized: truelocationEnabled: truemicrophoneAuthorized: truemode: "default"model: "iPhone 6/7/8 Plus"notificationAuthorized: truepixelRatio: 3platform: "devtools"safeArea: {top: 20, left: 0, right: 414, bottom: 736, width: 414, …}screenHeight: 736screenWidth: 414statusBarHeight: 20system: "iOS 10.0.1"version: "8.0.5"wifiEnabled: truewindowHeight: 624windowWidth: 414
}
真机调试