抖音开放平台Logo
开发者文档
控制台

InteractiveButton.hide
收藏
我的收藏

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

隐藏按钮。

前提条件
业务背景
使用限制
注意事项
相关教程

语法

InteractiveButton.hide(options)

参数说明

options 为 object 类型,属性如下:

属性名类型默认值必填说明最低支持版本
successfunction
接口调用成功的回调函数
2.46.0
failfunction
接口调用失败的回调函数
2.46.0
completefunction
接口调用结束的回调函数(调用成功、失败都会执行)
2.46.0

回调成功

object 类型,属性如下:

属性名类型说明最低支持版本
errMsgstring
"InteractiveButton.hide:ok"
2.46.0

扫码体验

请使用字节宿主APP扫码

代码示例

开发者工具中预览

点击按钮进行隐藏
let params = { type: "text", text: "text button", style: { left: 100, top: 100, width: 200, height: 20, textColor: "#111111", }, success(button) { function button_tap(res) { logger.log("button_tap:" + res.buttonid); button.hide(); } button.onTap(button_tap); }, fail(res) { console.log("创建失败", res.errMsg); }, }; tt.createInteractiveButton(params);