小程序wx.getSystemSetting

Object wx.getSystemSetting()

获取设备设置

基础库 2.20.1 开始支持,低版本需做兼容处理。
小程序插件:支持,需要小程序基础库版本不低于 2.21.3

返回值

Object

属性 类型 说明
bluetoothEnabled boolean 蓝牙的系统开关
locationEnabled boolean 地理位置的系统开关
wifiEnabled boolean Wi-Fi 的系统开关
deviceOrientation string 设备方向
合法值 说明
portrait 竖屏
landscape 横屏

示例代码

const systemSetting = wx.getSystemSetting()
console.log(systemSetting.bluetoothEnabled)
console.log(systemSetting.deviceOrientation)
console.log(systemSetting.locationEnabled)
console.log(systemSetting.wifiEnabled)

分类小程序基础知识相关推荐:

小程序wx.env的使用 小程序wx.canIUse使用 小程序wx.base64ToArrayBuffer 小程序wx.arrayBufferToBase64 小程序wx.openSystemBluetoothSetting 小程序wx.openAppAuthorizeSetting 小程序wx.getWindowInfo 小程序wx.getSystemSetting 小程序wx.getSystemInfoSync 小程序wx.getSystemInfoAsync 小程序wx.getSystemInfo 小程序wx.getDeviceInfo 小程序wx.getAppBaseInfo 小程序wx.getAppAuthorizeSetting