• JS API 列表
  • 基础
  • tt.canIUse
  • tt.base64ToArrayBuffer
  • tt.arrayBufferToBase64
  • 生命周期
  • tt.canIPutStuffOverComponent
  • 版本更新
  • 定时器
  • 应用级事件
  • tt.onAppShow
  • tt.offAppShow
  • tt.onAppHide
  • tt.offAppHide
  • tt.offUnhandledRejection
  • tt.onError
  • tt.offError
  • tt.onLazyLoadError
  • tt.offLazyLoadError
  • tt.onUnhandledRejection
  • tt.onAppLaunch
  • tt.offAppLaunch
  • 环境变量
  • 性能
  • 线程
  • 窗口尺寸变化
  • tt.setPageInfo
  • TTML
  • 网络
  • 媒体
  • 地图
  • 文件
  • 数据缓存
  • 地理位置
  • 设备
  • 画布
  • 界面
  • 页面导航
  • 开放接口
  • 行业开放
  • 第三方平台
  • 其它
  • tt.offError
    收藏
    我的收藏

    基础库 1.46.0 开始支持本方法,这是一个同步方法。

    取消监听小程序错误事件。

    前提条件
    业务背景
    使用限制
    注意事项

    Tip:如果多次使用 tt.onError 注册同一个回调函数,若想取消多次回调,可通过调用此方法但不传入回调函数的方式解决。 若传入之前注册的回调函数,只会取消最早一次的监听效果。​

    支持沙盒
    相关教程

    语法

    tt.offError(cb)

    参数说明

    cb

    类型默认值必填说明最低支持版本
    function

    使用 tt.onError 时的回调函数。如果参数为空,则表示取消所有的监听函数​

    1.46.0

    返回值

    扫码体验

    请使用字节宿主APP扫码

    代码示例

    开发者工具中预览

    //【示例 1】取消所有的监听函数:​ App({ onLaunch() { tt.onError((e) => { console.log("error", e); }); tt.onError((e) => { console.log("error", e); }); }, onHide() { // 取消所有的错误监听函数 tt.offError(); }, }); // 【示例 2】取消传入的监听函数:​ App({ onLaunch() { tt.onError(this.handleError); }, onHide() { // 取消指定的错误监听函数 tt.offError(this.handleError); }, handleError(err) { console.log(err); }, });