该 API 使用方法为 Boolean wx.canIUse(string schema)
${API}.${method}.${param}.${options}
或者 ${component}.${attribute}.${option}
方式来调用。参数值 | 说明 |
${API} | 代表 API 名字 |
${method} | 代表调用方式,有效值为 return,success,object,callback |
${param} | 代表参数或者返回值 |
${options} | 代表参数的可选值 |
${component} | 代表组件名字 |
${attribute} | 代表组件属性 |
${option} | 代表组件属性的可选值 |
wx.canIUse('openBluetoothAdapter')wx.canIUse('getSystemInfoSync.return.screenWidth')wx.canIUse('getSystemInfo.success.screenWidth')wx.canIUse('showToast.object.image')wx.canIUse('onCompassChange.callback.direction')wx.canIUse('request.object.method.GET')wx.canIUse('live-player')wx.canIUse('text.selectable')wx.canIUse('button.open-type.contact')
该 API 使用方法为 wx.env
该 API 使用方法为 ArrayBuffer wx.base64ToArrayBuffer(string base64)
const base64 = 'CxYh'const arrayBuffer = wx.base64ToArrayBuffer(base64)
该 API 使用方法为 string wx.arrayBufferToBase64(ArrayBuffer arrayBuffer)
const arrayBuffer = new Uint8Array([11, 22, 33])const base64 = wx.arrayBufferToBase64(arrayBuffer)
该 API 使用方法为 wx.getSystemInfo(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
success | Function | - | 否 | 接口调用成功的回调函数 |
fail | Function | - | 否 | 接口调用失败的回调函数 |
complete | Function | - | 否 | 接口调用结束的回调函数(无论成功与否都执行) |
属性 | 类型 | 说明 |
brand | String | 设备品牌 |
model | String | 设备型号 |
pixelRatio | Number | 设备像素比 |
screenWidth | Number | 屏幕宽度,单位 px |
screenHeight | Number | 屏幕高度,单位 px |
windowWidth | Number | 可使用窗口宽度,单位 px |
windowHeight | Number | 可使用窗口高度,单位 px |
statusBarHeight | Number | 状态栏的高度,单位 px |
language | String | 语言 |
version | String | 版本号 |
system | String | 操作系统及版本 |
platform | String | 客户端平台,其合法值如下 ios:iOS 客户端(包含 iPhone、iPad) android:Android 客户端 devtools:TCMPP 开发者工具 |
fontSizeSetting | number | 用户字体大小,单位 px |
SDKVersion | String | 客户端基础库版本 |
AppPlatform | String | App 平台 |
safeArea | Object | 在竖屏正方向下的安全区域 |
theme | String | 系统当前主题, 取值为 light 或 dark ,全局配置"darkmode":true 时才能获取,否则为 undefined |
属性 | 类型 | 说明 |
left | Number | 安全区域左上角横坐标 |
right | Number | 安全区域右下角横坐标 |
top | Number | 安全区域左上角纵坐标 |
bottom | Number | 安全区域右下上角纵坐标 |
width | Number | 安全区域的宽度,单位逻辑像素 |
height | Number | 安全区域的高度,单位逻辑像素 |
wx.getSystemInfo({success(res) {console.log(res.model)console.log(res.pixelRatio)console.log(res.windowWidth)console.log(res.windowHeight)console.log(res.language)console.log(res.version)console.log(res.platform)}})
try {const res = wx.getSystemInfoSync()console.log(res.model)console.log(res.pixelRatio)console.log(res.windowWidth)console.log(res.windowHeight)console.log(res.language)console.log(res.version)console.log(res.platform)} catch (e) {// Do something when catch error}
该 API 使用方法为 Object wx.getSystemInfoSync()
属性 | 类型 | 说明 |
brand | String | 设备品牌 |
model | String | 设备型号 |
pixelRatio | Number | 设备像素比 |
screenWidth | Number | 屏幕宽度,单位 px |
screenHeight | Number | 屏幕高度,单位 px |
windowWidth | Number | 可使用窗口宽度,单位 px |
windowHeight | Number | 可使用窗口高度,单位 px |
statusBarHeight | Number | 状态栏的高度,单位 px |
language | String | 语言 |
version | String | 版本号 |
system | String | 操作系统及版本 |
platform | String | 客户端平台,其合法值如下 ios:iOS 客户端(包含 iPhone、iPad) android:Android 客户端 devtools:TCMPP 开发者工具 |
fontSizeSetting | number | 用户字体大小,单位 px |
AppPlatform | String | App 平台 |
safeArea | Object | 在竖屏正方向下的安全区域 |
theme | String | 系统当前主题, 取值为 light 或 dark ,全局配置"darkmode":true 时才能获取,否则为 undefined |
属性 | 类型 | 说明 |
left | Number | 安全区域左上角横坐标 |
right | Number | 安全区域右下角横坐标 |
top | Number | 安全区域左上角纵坐标 |
bottom | Number | 安全区域右下上角纵坐标 |
width | Number | 安全区域的宽度,单位逻辑像素 |
height | Number | 安全区域的高度,单位逻辑像素 |
wx.getSystemInfo({success(res) {console.log(res.model)console.log(res.pixelRatio)console.log(res.windowWidth)console.log(res.windowHeight)console.log(res.language)console.log(res.version)console.log(res.platform)}})
try {const res = wx.getSystemInfoSync()console.log(res.model)console.log(res.pixelRatio)console.log(res.windowWidth)console.log(res.windowHeight)console.log(res.language)console.log(res.version)console.log(res.platform)} catch (e) {// Do something when catch error}
该 API 使用方法为 wx.getSystemInfoAsync(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用失败的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
属性 | 类型 | 说明 |
brand | string | 设备品牌 |
model | string | 设备型号。新机型刚推出一段时间会显示 unknown,我们会尽快进行适配 |
pixelRatio | number | 设备像素比 |
screenWidth | number | 屏幕宽度,单位 px |
screenHeight | number | 屏幕高度,单位 px |
windowWidth | number | 可使用窗口宽度,单位 px |
windowHeight | number | 可使用窗口高度,单位 px |
statusBarHeight | number | 任务状态栏高度,单位 px |
language | string | 应用内设置的语言 |
version | string | 应用版本号 |
system | string | 操作系统及版本 |
platform | string | 客户端平台,其合法值为 iOS:iOS 客户端(包括 iPhone、iPad) Android:Android 客户端 devtools:IDE 开发者工具 |
fontSizeSetting | number | 用户字体大小,单位 px |
SDKVersion | string | 客户端基础库版本 |
safeArea | object | 在竖屏正方向下的安全区域。部分机型没有安全区域概念,也不会返回 safeArea 字段,开发者需自行兼容。返回值请参考下表 safeArea 返回值 |
theme | string | 系统当前主题,全局配置 darkmode:true 时才能获取,否则为 undefined (不支持小游戏),其合法值为 light:明亮 dark:黑暗 |
结构属性 | 类型 | 说明 |
left | number | 安全区域左上角横坐标 |
right | number | 安全区域右下角横坐标 |
top | number | 安全区域左上角纵坐标 |
bottom | number | 安全区域右下角纵坐标 |
width | number | 安全区域的宽度,单位逻辑像素 |
height | number | 安全区域的高度,单位逻辑像素 |
wx.getSystemInfoAsync({success (res) {console.log(res.model)console.log(res.pixelRatio)console.log(res.windowWidth)console.log(res.windowHeight)console.log(res.language)console.log(res.version)console.log(res.platform)}})
该 API 使用方法为 Object wx.getWindowInfo()
属性 | 类型 | 说明 |
pixelRatio | number | 设备像素比 |
screenWidth | number | 屏幕宽度,单位 px |
screenHeight | number | 屏幕高度,单位 px |
windowWidth | number | 可使用窗口宽度,单位 px |
windowHeight | number | 可使用窗口高度,单位 px |
statusBarHeight | number | 状态栏的高度,单位 px |
safeArea | object | 在竖屏正方向下的安全区域。部分机型没有安全区域概念,也不会返回 safeArea 字段,开发者需自行兼容 |
screenTop | number | 窗口上边缘的 y 值 |
结构属性 | 类型 | 说明 |
left | number | 安全区域左上角横坐标 |
right | number | 安全区域右下角横坐标 |
top | number | 安全区域左上角纵坐标 |
bottom | number | 安全区域右下角纵坐标 |
width | number | 安全区域的宽度,单位逻辑像素 |
height | number | 安全区域的高度,单位逻辑像素 |
const windowInfo = wx.getWindowInfo()console.log(windowInfo.pixelRatio)console.log(windowInfo.screenWidth)console.log(windowInfo.screenHeight)console.log(windowInfo.windowWidth)console.log(windowInfo.windowHeight)console.log(windowInfo.statusBarHeight)console.log(windowInfo.safeArea)console.log(windowInfo.screenTop)
该 API 使用方法为 Object wx.getSystemSetting()
属性 | 类型 | 说明 |
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)
该 API 使用方法为 wx.openSystemBluetoothSetting(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用失败的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
wx.openSystemBluetoothSetting({success (res) {console.log(res)}})
该 API 使用方法为 wx.openAppAuthorizeSetting(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用失败的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
wx.openAppAuthorizeSetting({success (res) {console.log(res)}})
该 API 使用方法为 Promise wx.getRendererUserAgent(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用失败的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
wx.getRendererUserAgent().then(userAgent => console.log(userAgent))wx.getRendererUserAgent({success(res) {console.log(res.userAgent)}})
该 API 使用方法为 Object wx.getDeviceInfo()
属性 | 类型 | 说明 |
abi | string | 宿主 App 二进制接口类型(仅 Android 支持) |
deviceAbi | string | 设备二进制接口类型(仅 Android 支持) |
benchmarkLevel | number | 设备性能等级(仅 Android 支持),合法值为: -2 或 0:该设备无法运行小游戏 -1:性能未知 >=1:设备性能值,该值越高,设备性能越好,目前最高不到50 |
brand | string | 设备品牌 |
model | string | 设备型号。新机型刚推出一段时间会显示 unknown,我们会尽快进行适配 |
system | string | 操作系统及版本 |
platform | string | 客户端平台 |
cpuType | string | 设备 CPU 型号(仅 Android 支持)GPU 型号可通过 WebGLRenderingContext.getExtension('WEBGL_debug_renderer_info') 来获取 |
menorySize | string | 设备内存大小,单位为 MB |
const deviceInfo = wx.getDeviceInfo()console.log(deviceInfo.abi)console.log(deviceInfo.benchmarkLevel)console.log(deviceInfo.brand)console.log(deviceInfo.model)console.log(deviceInfo.platform)console.log(deviceInfo.system)
该 API 使用方法为 Object wx.getAppBaseInfo()
属性 | 类型 | 说明 |
SDKVersion | string | 宿主客户端基础库版本 |
enableDebug | boolean | |
host | Object | 当前小程序运行的宿主环境。 |
language | string | 宿主客户端设置的语言 |
version | string | 宿主客户端版本号 |
theme | string | 系统当前主题,取值为`light:明亮模式` 或 `dark:暗黑模式`,全局配置`"darkmode":true`时才能获取,否则为 undefined(不支持小游戏) |
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)
该 API 使用方法为 Object wx.getAppAuthorizeSetting()
属性 | 类型 | 说明 |
albumAuthorized | 'authorized'/'denied'/'not determined' | 允许宿主客户端使用相册的开关(仅 iOS 有效) |
bluetoothAuthorized | 'authorized'/'denied'/'not determined' | 允许宿主客户端使用蓝牙的开关(仅 iOS 有效) |
cameraAuthorized | 'authorized'/'denied'/'not determined' | 允许宿主客户端使用摄像头的开关 |
locationAuthorized | 'authorized'/'denied'/'not determined' | 允许宿主客户端使用定位的开关 |
locationReducedAccuracy | boolean | 定位准确度。true 表示模糊定位,false 表示精确定位(仅 iOS 有效) |
microphoneAuthorized | 'authorized'/'denied'/'not determined' | 允许宿主客户端使用麦克风的开关 |
notificationAuthorized | 'authorized'/'denied'/'not determined' | 允许宿主客户端通知的开关 |
notificationAlertAuthorized | 'authorized'/'denied'/'not determined' | 允许宿主客户端通知带有提醒的开关(仅 iOS 有效) |
notificationBadgeAuthorized | 'authorized'/'denied'/'not determined' | 允许宿主客户端通知带有标记的开关(仅 iOS 有效) |
notificationSoundAuthorized | 'authorized'/'denied'/'not determined' | 允许宿主客户端通知带有声音的开关(仅 iOS 有效) |
phoneCalendarAuthorized | 'authorized'/'denied'/'not determined' | 允许宿主客户端读写日历的开关 |
const appAuthorizeSetting = wx.getAppAuthorizeSetting()console.log(appAuthorizeSetting.albumAuthorized)console.log(appAuthorizeSetting.bluetoothAuthorized)console.log(appAuthorizeSetting.cameraAuthorized)console.log(appAuthorizeSetting.locationAuthorized)console.log(appAuthorizeSetting.locationReducedAccuracy)console.log(appAuthorizeSetting.microphoneAuthorized)console.log(appAuthorizeSetting.notificationAlertAuthorized)console.log(appAuthorizeSetting.notificationAuthorized)console.log(appAuthorizeSetting.notificationBadgeAuthorized)console.log(appAuthorizeSetting.notificationSoundAuthorized)console.log(appAuthorizeSetting.phoneCalendarAuthorized)
该 API 使用方法为 UpdateManager wx.getUpdateManager()
该 方法 使用方式为 UpdateManager.applyUpdate()
onUpdateReady
回调)调用。该 方法 使用方式为 UpdateManager.onCheckForUpdate(function listener)
属性 | 类型 | 说明 |
hasUpdate | Boolean | 是否有新版本 |
该 方法 使用方式为 UpdateManager.onUpdateFailed(function listener)
该 方法 使用方式为 UpdateManager.onUpdateReady(function listener)
const updateManager = wx.getUpdateManager()updateManager.onCheckForUpdate(function (res) {// 请求完新版本信息的回调console.log(res.hasUpdate)})updateManager.onUpdateReady(function () {wx.showModal({title: '更新提示',content: '新版本已经准备好,是否重启应用?',success(res) {if (res.confirm) {// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启updateManager.applyUpdate()}}})})updateManager.onUpdateFailed(function () {// 新版本下载失败})
该 API 使用方法为 Object wx.getLaunchOptionsSync()
referrerInfo
的时候会返回 undefined
,建议使用options.referrerInfo && options.referrerInfo.appId
进行判断。属性 | 类型 | 说明 |
path | String | 启动小程序的路径 |
scene | Number | 启动小程序的场景值,默认为1001 |
query | Object | 启动小程序的 query 参数 |
referrerInfo | Object | 来源信息,从另一个小程序或 App 进入小程序时返回。否则返回{} |
forwardMaterials | Array.<Object> | 打开的文件信息数组 |
属性 | 类型 | 说明 |
appId | String | 来源小程序 或 App 的 appId |
extraData | Object | 来源小程序传过来的数据 |
[[TMFMiniAppSDKManager sharedInstance] startUpMiniAppWithAppID:@"mpbz0uqwzddj5zbt" scene:TMAEntrySceneNone firstPage:nil paramsStr:@"a=1&b=2" parentVC:self completion:^(NSError * _Nullable err) {}];
MiniStartLinkOptions miniStartOptions = new MiniStartLinkOptions(); miniStartOptions.params = (String) options.get("params");public static void startMiniApp(Activity activity, String appId, MiniStartOptions options) { startMiniApp(activity, appId, 1001, 0, options);}
属性 | 类型 | 说明 |
type | string | 文件的 mimetype 类型 |
name | Object | 文件名 |
path | string | 文件路径 |
size | number | 文件大小 |
referrerInfo
的场景属性 | 类型 | appId 含义 |
1037 | 小程序打开小程序 | 来源小程序 |
1038 | 从另一个小程序返回 | 来源小程序 |
该 API 使用方法为 Object wx.getEnterOptionsSync()
referrerInfo
的时候会返回 undefined
,建议使用options.referrerInfo && options.referrerInfo.appId
进行判断。属性 | 类型 | 说明 |
path | string | 启动小程序的路径(代码包路径) |
scene | number | 启动小程序的场景值 |
query | Object | 启动小程序的 query 参数 |
shareTicket | string | shareTicket |
referrerInfo | Object | 来源信息。从另一个小程序 或 App 进入小程序时返回。否则返回 {},具体参见表格前文的注意 |
forwardMaterials | Array.<Object> | 打开的文件信息数组 |
属性 | 类型 | 说明 |
appId | String | 来源小程序 或 App 的 appId |
extraData | Object | 来源小程序传过来的数据 |
属性 | 类型 | 说明 |
type | String | 文件的 mimetype 类型 |
name | Object | 文件名 |
path | String | 文件路径(如果是 webview 则是 url) |
size | Number | 文件大小 |
属性 | 类型 | appId 含义 |
1037 | 小程序打开小程序 | 来源小程序 |
1038 | 从另一个小程序返回 | 来源小程序 |
该 API 使用方法为 wx.onError(function callback)
该 API 使用方法为 wx.offError(function callback)
该 API 使用方法为 wx.onThemeChange(function listener)
属性 | 合法值及说明 | 类型 | 说明 |
theme | dark:深色主题 light:浅色主题 | String | 系统当前的主题,取值为 light 或 dark |
该 API 使用方法为 wx.offThemeChange(function listener)
const listener = function (res) { console.log(res) }wx.onThemeChange(listener)wx.offThemeChange(listener) // 需传入与监听时同一个的函数对象
该 API 使用方法为 wx.onPageNotFound(function listener)
属性 | 类型 | 说明 |
path | string | 不存在页面的路径 (代码包路径) |
query | Object | 打开不存在页面的 query 参数 |
isEntryPage | boolean | 是否本次启动的首个页面(例如从分享等入口进来,首个页面是开发者配置的分享页面) |
该 API 使用方法为 wx.offPageNotFound(function listener)
const listener = function (res) { console.log(res) }wx.onPageNotFound(listener)wx.offPageNotFound(listener) // 需传入与监听时同一个的函数对象
该 API 使用方法为 wx.onAppShow(function listener)
options.referrerInfo && options.referrerInfo.appId
进行判断。属性 | 类型 | 说明 |
path | string | 启动小程序的路径(代码包路径) |
scene | number | 启动小程序的场景值 |
query | Object | 启动小程序的 query 参数 |
shareTicket | string | shareTicket |
referrerInfo | Object | 来源信息。从另一个小程序 或 App 进入小程序时返回。否则返回{},具体参见表格前文的注意 |
forwardMaterials | Array.<Object> | 打开的文件信息数组 |
属性 | 类型 | 说明 |
appId | string | 来源小程序 或 App 的 appId |
extraData | Object | 来源小程序传过来的数据 |
属性 | 类型 | 说明 |
type | String | 文件的 mimetype 类型 |
name | Object | 文件名 |
path | String | 文件路径(如果是 webview 则是 url) |
size | Number | 文件大小 |
场景值 | 场景 | appId含义 |
1037 | 小程序打开小程序 | 来源小程序 |
1038 | 从另一个小程序返回 | 来源小程序 |
该 API 使用方法为 wx.offAppShow(function listener)
const listener = function (res) { console.log(res) }wx.onAppShow(listener)wx.offAppShow(listener) // 需传入与监听时同一个的函数对象
该 API 使用方法为 wx.onAppHide(function listener)
该 API 使用方法为 wx.offAppHide(function listener)
const listener = function (res) { console.log(res) }wx.onAppHide(listener)wx.offAppHide(listener) // 需传入与监听时同一个的函数对象
该 API 使用方法为 wx.onUnhandledRejection(function listener)
属性 | 类型 | 说明 |
reason | string | 拒绝原因,一般是一个 Error 对象 |
promise | Promise.<any> | 被拒绝的 Promise 对象 |
该 API 使用方法为 wx.offUnhandledRejection(function listener)
const listener = function (res) { console.log(res) }wx.onUnhandledRejection(listener)wx.offUnhandledRejection(listener) // 需传入与监听时同一个的函数对象
该 API 使用方法为 wx.setEnableDebug(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
enableDebug | boolean | - | 是 | 是否打开调试 |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用失败的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
// 打开调试wx.setEnableDebug({enableDebug: true})// 关闭调试wx.setEnableDebug({enableDebug: false})
该 API 使用方法为 RealtimeLogManager wx.getRealtimeLogManager().
// 小程序端const logger = wx.getRealtimeLogManager()logger.info({str: 'hello world'}, 'info log', 100, [1, 2, 3])logger.error({str: 'hello world'}, 'error log', 100, [1, 2, 3])logger.warn({str: 'hello world'}, 'warn log', 100, [1, 2, 3])// 插件端,基础库 2.16.0 版本后支持,只允许采用 key-value 的新格式上报const logManager = wx.getRealtimeLogManager()const logger = logManager.tag('plugin-log1')logger.info('key1', 'value1')logger.error('key2', {str: 'value2'})logger.warn('key3', 'value3')
该 API 使用方法为 LogManager wx.getLogManager(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
level | number | 0 | 否 | 取值为0/1,取值为0表示会把 App 、Page 的生命周期函数和命名空间下的函数调用写入日志,取值为1则不会。默认值是 0 |
const logger = wx.getLogManager({level: 1})logger.log({str: 'hello world'}, 'basic log', 100, [1, 2, 3])logger.info({str: 'hello world'}, 'info log', 100, [1, 2, 3])logger.debug({str: 'hello world'}, 'debug log', 100, [1, 2, 3])logger.warn({str: 'hello world'}, 'warn log', 100, [1, 2, 3])
该 方法 使用方式为 console.debug()
该 方法 使用方式为 console.error()
该 方法 使用方式为 console.group()
该 方法 使用方式为 console.groupEnd()
该 方法 使用方式为 console.info
该 方法 使用方式为 console.log()
该 方法 使用方式为 console.warn()
该 方法 使用方式为 LogManager.debug()
该 方法 使用方式为 LogManager.info()
该 方法 使用方式为 LogManager.log()
该 方法 使用方式为 LogManager.warn()
<Button>
组件的open-type="feedback"
来上传打印的日志。开发者可以通过小程序管理后台左侧菜单“反馈管理”页面查看;App
、Page
的生命周期函数和命名空间下的函数调用写入日志。该 方法 使用方式为 RealtimeLogManager.addFilterMsg(string msg)
该 方法 使用方式为 RealtimeLogManager.error()
该 方法 使用方式为 Object RealtimeLogManager.getCurrentState()
属性 | 类型 | 说明 |
size | number | 当前缓存中已使用空间,以字节为单位 |
maxSize | number | 当前缓存最大可用空间,以字节为单位 |
logCount | number | 当前缓存中的日志条数 |
maxLogCount | number | 当前缓存中最大可存日志条数 |
该 方法 使用方式为 RealtimeLogManager.in(Page pageInstance)
该 方法 使用方式为 RealtimeLogManager.info()
该 方法 使用方式为 RealtimeLogManagersetFilterMsg(string msg)
该 方法 使用方式为 RealtimeLogManager.warn()
该 方法 使用方式为 RealtimeTagLogManager.addFilterMsg(string msg)
该 方法 使用方式为 RealtimeTagLogManager.error(string key, Object]Array.<any> number string value)
该 方法 使用方式为 RealtimeTagLogManager.info(string key, Object Array.<any> number string value)
该 方法 使用方式为 RealtimeTagLogManager.setFilterMsg(string msg)
该 方法 使用方式为 RealtimeTagLogManager.warn(string key, ObjectJArray.< any> number string value)
本页内容是否解决了您的问题?