tt.offShareAppMessage收藏我的收藏
收藏
我的收藏基础库 1.0.0 开始支持本方法,这是一个同步方法。
取消监听用户点击右上角菜单的“转发”按钮时触发的事件。
前提条件 | 无 |
业务背景 | 无 |
使用限制 | 无 |
注意事项 | 无 |
相关教程 | 无 |
语法
tt.offShareAppMessage()
参数说明
无
返回值
无
扫码体验
请使用字节宿主APP扫码
代码示例
function onShareAppMessage(res) { console.log(res); } // 监听菜单按钮“转发” tt.onShareAppMessage(onShareAppMessage); // 取消监听菜单按钮“转发” setTimeout(() => { tt.offShareAppMessage(onShareAppMessage); }, 2000);
点击纠错