一、官网
网址 :https://zh.uniapp.dcloud.io/tutorial/其他辅助网页 讲解:https://www.wenjiangs.com/doc/7y94pldun2 插件下载free :https://ext.dcloud.net.cn/
二、提示框
用uni.showToast
提醒的次数超过7个字 的时候就会导致文字显示不全 ,达不到提醒的效果,这种时候我们就需要使用uni.showModal
显示态弹窗
1.showToast
(1)uni.showToast参数
(2)icon图标的参数
(3) 用法
uni. showToast ( {
title : '没有更多了' ,
icon : 'none' ,
image : '' ,
mask : true ,
duration : '' ,
position : '' ,
success : '' ,
fail : '' ,
complete : '' ,
} ) ;
(4)icon区别
openToast ( ) {
uni. showToast ( {
title : 'success' ,
icon : 'success' ,
} ) ;
(5)隐藏消息框提示
uni. hideToast ( ) ;
2.showModal
(1)uni.showModal参数
(2)success返回参数
(3)基本实现
uni. showModal ( {
title : '提示' ,
content : '这是一个模态框!' ,
success : function ( res ) {
if ( res. confirm) {
console. log ( '用户点击确定' ) ;
} else if ( res. cancel) {
console. log ( '用户点击取消' ) ;
}
}
} ) ;
openModel ( ) {
uni. showModal ( {
title : '提示' ,
content : '这是一个模态框!' ,
editable : true ,
placeholderText : '显示输入框' ,
} ) ;
}
3.showLoading 和 hideLoading
(1)参数
uni. showLoading ( {
title : '' ,
mask : '' ,
success : function ( res ) { } ,
fail : '' ,
complete : '' ,
} ) ;
(2)用法
uni. showLoading ( {
title : '加载中' ,
mask : true ,
} ) ;
setTimeout ( function ( ) {
uni. hideLoading ( ) ;
} , 2000 ) ;
4.showActionSheet
uni. showActionSheet ( {
itemList : [ '选项一' , '选项二' , '选项三' ] ,
itemColor : "#55aaff" ,
success ( res ) {
console. log ( res. tapIndex)
} ,
fail ( res ) {
}
} )