showActionSheet 1.0.0+
显示操作菜单。
提示
iOS 实现时会自动加入「取消」选项,android 不会。
输入
继承标准对象输入,扩展属性描述:
名称 | 数据类型 | 属性 | 默认值 | 描述 |
---|---|---|---|---|
itemList | Array<string> | required | N/A | 菜单的选项,最多支持 6 个选项 |
输出
success
返回对象参数的扩展属性:
名称 | 数据类型 | 描述 |
---|---|---|
tapIndex | number | 用户点击次序,从0 开始计数 |
代码示例
const itemList = ['加精', '置顶', '删除', '封禁作者'];
tt.showActionSheet({
itemList,
success (res) {
console.log(`你点击了第${res.tapIndex + 1}个项目,内容是 ${itemList[res.tapIndex]}`);
},
fail (res) {
console.log(`showActionSheet调用失败`);
}
});
已知问题
- 暂不支持
itemColor
属性。 - 每个选项文案长度限制:
- android 没有限制,超长内容滚动;
- iOS 每个选项最多 1 行,每行约 18 个汉字。