uni-app的两种提示框

1. uni.showToast(OBJECT)
直接弹出提示:
uni.showToast({
title: '标题',
duration: 2000
});

2.uni.showModal(OBJECT)
显示模态弹窗,可以只有一个确定按钮,也可以同时有确定和取消按钮。
uni.showModal({
title: '提示',
content: '这是一个模态弹窗',
success: function (res) {
if (res.confirm) {
console.log('用户点击确定');
} else if (res.cancel) {
console.log('用户点击取消');
}
}
});

uni-app的两种提示框最先出现在Python成神之路

版权声明:
作者:dingding
链接:https://www.techfm.club/p/28517.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>