• JS API 列表
  • 基础
  • TTML
  • 网络
  • 媒体
  • 地图
  • 文件
  • 数据缓存
  • 地理位置
  • 设备
  • 画布
  • 界面
  • 交互反馈
  • tt.enableAlertBeforeUnload
  • tt.showToast
  • tt.hideToast
  • tt.showLoading
  • tt.hideLoading
  • tt.showModal
  • tt.showActionSheet
  • tt.showFavoriteGuide
  • tt.showInteractionBar
  • tt.hideInteractionBar
  • tt.disableAlertBeforeUnload
  • 导航栏
  • 菜单
  • 动画
  • 页面位置
  • 滑动返回
  • 下拉刷新
  • 键盘
  • TabBar
  • 页面导航
  • 开放接口
  • 行业开放
  • 第三方平台
  • 其它
  • tt.hideInteractionBar
    收藏
    我的收藏

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

    语法

    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

    扫码体验

    代码示例

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

    Bug & Tip

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