• uni.setEnableDebug(OBJECT)
    • 示例代码

    uni.setEnableDebug(OBJECT)

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

    平台差异说明

    5+AppH5微信小程序支付宝小程序百度小程序头条小程序
    xxxx

    OBJECT说明

    属性类型必填说明平台差异说明
    enableDebugboolean是否打开调试
    successfunction接口调用成功的回调函数微信小程序
    failfunction接口调用失败的回调函数微信小程序
    completefunction接口调用结束的回调函数(调用成功、失败都会执行)微信小程序

    示例代码

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

    发现错误?想参与编辑?在 GitHub 上编辑此页面!