qq.setEnableDebug

qq.setEnableDebug(Object object)

设置是否打开调试开关。此开关对正式版也能生效。

参数

Object object
属性类型默认值必填说明
enableDebugboolean是否打开调试
successfunction接口调用成功的回调函数
failfunction接口调用失败的回调函数
completefunction接口调用结束的回调函数(调用成功、失败都会执行)

示例代码

  1. // 打开调试
  2. qq.setEnableDebug({
  3. enableDebug: true
  4. })
  5. // 关闭调试
  6. qq.setEnableDebug({
  7. enableDebug: false
  8. })

console

向调试面板中打印日志。console 是一个全局对象,可以直接访问。在QQ客户端中,向 vConsole 中输出日志。

方法

console.debug()

向调试面板中打印 debug 日志

console.log()

向调试面板中打印 log 日志

console.info()

向调试面板中打印 info 日志

console.warn()

向调试面板中打印 warn 日志

console.error()

向调试面板中打印 error 日志

注意

  • 由于 vConsole 功能有限,以及不同客户端对 console 方法的支持情况有差异,建议开发者在小程序中只使用本文档中提供的方法。
  • 部分内容展示的限制请参见调试

.warn

console.warn()

向调试面板中打印 warn 日志

参数

any …args

日志内容,可以有任意多个。

.log

console.log()

向调试面板中打印 log 日志

参数

any …args

日志内容,可以有任意多个。

.info

console.info()

向调试面板中打印 info 日志

参数

any …args

日志内容,可以有任意多个。

参数

string label

分组标记,可选。

注意

仅在工具中有效,在 vConsole 中为空函数实现。

.error

console.error()

向调试面板中打印 error 日志

参数

any …args

日志内容,可以有任意多个。

.debug

console.debug()

向调试面板中打印 debug 日志

参数

any …args

日志内容,可以有任意多个。