InteractiveButton.hide收藏我的收藏
收藏
我的收藏基础库 2.46.0 开始支持本方法,这是一个异步方法。
隐藏按钮。
前提条件 | 无 |
业务背景 | 无 |
使用限制 | 无 |
注意事项 | 无 |
相关教程 | 无 |
语法
InteractiveButton.hide(options)
参数说明
options 为 object 类型,属性如下:
属性名 | 类型 | 默认值 | 必填 | 说明 | 最低支持版本 |
---|---|---|---|---|---|
success | function | 否 | 接口调用成功的回调函数 | 2.46.0 | |
fail | function | 否 | 接口调用失败的回调函数 | 2.46.0 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) | 2.46.0 |
回调成功
object 类型,属性如下:
属性名 | 类型 | 说明 | 最低支持版本 |
---|---|---|---|
errMsg | string | "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);
点击纠错