uniapp封装uni.showToast提示消息框
时间: 2023-12-09 16:02:45 浏览: 151
Toast消息框提示
你可以使用uni.showToast来封装提示消息框,以下是一个示例代码:
```javascript
// 在你的代码中调用该方法来显示提示消息框
function showMsg(message) {
uni.showToast({
title: message,
icon: 'none',
duration: 2000
});
}
```
在上述代码中,showMsg函数接受一个message参数,用于指定要显示的消息内容。uni.showToast函数用于显示消息框,其中title参数用于指定消息内容,icon参数用于指定图标('none'表示无图标),duration参数用于指定消息框停留的时间(单位为毫秒)。
你可以根据需要自行修改函数名和参数设置,以适应你的项目需求。
阅读全文