• 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.offUnhandledRejection
    收藏
    我的收藏

    基础库 2.41.0 开始支持本方法,低版本需做兼容处理,这是一个同步方法。
    取消监听未处理的 Promise 拒绝事件。

    语法

    tt.offUnhandledRejection(callback)

    参数说明

    callback

    类型
    默认值
    必填
    说明
    最低支持版本
    function
    监听未处理的 Promise 拒绝事件的回调函数
    2.41.0

    返回值

    扫码体验

    代码示例

    const callback = (res) => { console.log("拒绝原因,一般是一个 Error 对象", res.reason); console.log("被拒绝的 Promise 对象", res.promise); }; tt.onUnhandledRejection(callback); // 启动监听 tt.offUnhandledRejection(callback); // 取消监听

    Bug & Tip