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

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

    语法

    tt.offAppLaunch(callback)

    参数说明

    callback

    类型
    默认值
    必填
    说明
    最低支持版本
    function
    启动事件的回调参数
    2.8.0

    返回值

    扫码体验

    代码示例

    <view class="content"> <button type="primary" size="default" bindtap="offAppLaunch"> 取消监听小程序启动事件 </button> </view>
    Page({ data: { launchQuery: {}, }, callback(res) { const params = Object.assign({}, res); params.query = params.query && JSON.stringify(params.query); params.referrerInfo = params.referrerInfo && JSON.stringify(params.referrerInfo); this.setData({ launchQuery: params, }); }, offAppLaunch() { tt.offAppLaunch(this.callback); console.log("offAppLaunch success"); tt.showToast({ title: "已取消监听小程序启动事件", icon: "none", duration: 3000, }); }, clearAllAttr() { this.setData({ launchQuery: {}, }); }, });

    Bug & Tip