showModal 1.0.0+
显示模态弹窗。
输入
继承标准对象输入,扩展属性描述:
名称 | 数据类型 | 属性 | 默认值 | 描述 |
---|---|---|---|---|
title | string | optional | </td><td>标题</td></tr><tr><td><code>content</code></td><td><code>string</code></td><td>optional</td><td> | 内容 |
confirmText | string | optional | 确定 | 确定按钮的文案,最多4个字符 |
showCancel | boolean | optional | true | 是否显示取消按钮 |
cancelText | string | optional | 取消 | 取消按钮的文案,最多4个字符 |
⚠️注意
title
和content
不可同时为空。
输出
success
返回对象参数的扩展属性:
名称 | 数据类型 | 描述 |
---|---|---|
confirm | boolean | 是否点击了确定按钮 |
cancel | boolean | 是否点击了取消按钮 |
代码示例
tt.showModal({
title: '请求获得定位权限',
content: '获得你的地理位置能够更好的为你推荐本地信息',
success (res) {
if (res.confirm) {
console.log('confirm, continued');
} else if (res.cancel) {
console.log('cancel, cold')
} else {
// what happend?
}
},
fail (res) {
console.log(`showModal调用失败`);
}
});
已知问题
- 暂不支持
confirmColor
和cancelColor
参数。 title
的长度限制:- android 端限制为 1 行,每行约13个汉字;
- iOS 端限制为 3 行,每行约17个汉字。
content
的长度限制:- android 端没有限制,Modal最高为屏幕高度,内容滚动;
- iOS 端限制为 3 行,每行约17个汉字。