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
无