tt.hideInteractionBar
收藏
我的收藏

基础库 1.58.0 开始支持本方法,这是一个异步方法。​
警告
此接口将逐步废弃,后续不再维护,请及时修改下线,避免影响小程序使用​
隐藏互动组件,只支持在今日头条 APP 上使用。​

语法​

js
复制
tt.hideInteractionBar(options);

参数说明​

options 为 object 类型,属性如下:​
属性名​
类型​
默认值​
必填​
说明​
最低支持版本​
success​
function​
否​
接口调用成功的回调函数​
1.58.0​
fail​
function​
否​
接口调用失败的回调函数​
1.58.0​
complete​
function​
否​
接口调用结束的回调函数(调用成功、失败都会执行)​
1.58.0​

回调成功​

object 类型,属性如下​
属性名​
类型​
说明​
最低支持版本​
errMsg​
string​
"hideInteractionBar:ok"​
1.58.0​

回调失败​

object 类型,属性如下​
属性名​
类型​
说明​
最低支持版本​
errMsg​
string​
"hideInteractionBar:fail " + 详细错误信息​
1.58.0​

扫码体验​

代码示例​

js
复制
tt.hideInteractionBar({
success(res) {
console.log(res);
},
fail(err) {
console.log(`hideInteractionBar 调用失败`);
},
});

Bug & Tip​

    Tip:注意这个 API 仅供 feed 中的小程序调用。​