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

参考文档

类型

  1. (res: Option) => Promise<Promised>

参数

Option

参数类型必填说明
enableDebugboolean是否打开调试
complete(res: CallbackResult) => void接口调用结束的回调函数(调用成功、失败都会执行)
fail(res: CallbackResult) => void接口调用失败的回调函数
success(res: CallbackResult) => void接口调用成功的回调函数

Promised

参数类型说明
errMsgstring调用结果

示例代码

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

API 支持度

API微信小程序H5React Native
Taro.setEnableDebug✔️