Object wx.getSystemSetting()
获取设备设置
基础库 2.20.1 开始支持,低版本需做兼容处理。
小程序插件:支持,需要小程序基础库版本不低于 2.21.3
返回值
Object
属性 | 类型 | 说明 | |||||||
---|---|---|---|---|---|---|---|---|---|
bluetoothEnabled | boolean | 蓝牙的系统开关 | |||||||
locationEnabled | boolean | 地理位置的系统开关 | |||||||
wifiEnabled | boolean | Wi-Fi 的系统开关 | |||||||
deviceOrientation | string | 设备方向 | |||||||
|
示例代码
const systemSetting = wx.getSystemSetting() console.log(systemSetting.bluetoothEnabled) console.log(systemSetting.deviceOrientation) console.log(systemSetting.locationEnabled) console.log(systemSetting.wifiEnabled)