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成神之路。
共有 0 条评论