# Object wx.getAppBaseInfo()
基础库 2.25.3 开始支持,低版本需做兼容处理。
微信 Windows 版:支持
微信 Mac 版:支持
微信 鸿蒙 OS 版:支持
# 功能描述
获取微信APP基础信息
# 返回值
# Object
属性 | 类型 | 说明 | 最低版本 | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
SDKVersion | string | 客户端基础库版本 | ||||||||||
enableDebug | boolean | 是否已打开调试。可通过右上角菜单或 wx.setEnableDebug 打开调试。 | ||||||||||
host | Object | 当前小程序运行的宿主环境 | ||||||||||
| ||||||||||||
language | string | 微信设置的语言 | ||||||||||
version | string | 微信版本号 | ||||||||||
theme | string | 系统当前主题,取值为`light`或`dark`,全局配置`"darkmode":true`时才能获取,否则为 undefined (不支持小游戏) | ||||||||||
| ||||||||||||
fontSizeScaleFactor | number | 微信字体大小缩放比例 | ||||||||||
fontSizeSetting | number | 微信字体大小,单位px | 2.23.4 |
# 示例代码
const appBaseInfo = wx.getAppBaseInfo()
console.log(appBaseInfo.SDKVersion)
console.log(appBaseInfo.enableDebug)
console.log(appBaseInfo.host)
console.log(appBaseInfo.language)
console.log(appBaseInfo.version)
console.log(appBaseInfo.theme)