uniapp微信小プログラムの各種弾枠提示(軽提示)
直接コピーして貼り付けます.特殊な処理は不要です.
気に入ったら、ファブロスを注文してください.
1:テキストのヒントボックス
気に入ったら、ファブロスを注文してください.
1:テキストのヒントボックス
uni.showToast({
title: ' ',
icon: 'none', // , icon, 'none'
duration: 2000 // 2
})
2:成功アイコン付きのヒントボックスuni.showToast({
title: ' ',
icon: 'success', // success ''
duration: 2000 // 2
})
3:キャンセル確認付きのメッセージボックスuni.showModal({
title: ' ',
content: ' ?',
success: function(res) {
if (res.confirm) {
console.log(' ')
} else {
console.log(' ')
}
}
})
4:画像ヒント付きボックスuni.showToast({
title: ' ',
//
image: '../../static/logo.png',
duration: 2000
})
5:ロード中のヒントボックス//showLoading hideLoading ,
uni.showLoading({
title:' ...'
});
setTimeout(()=>{
uni.hideLoading()
},2000)
7:カバー付きの広告枠// ,
uni.showToast({
title: ' ',
duration: 2000,
mask: true // , false
})
7:リスト(上へリスト)のヒントボックスがあります.uni.showActionSheet({
itemList: ['A', 'B', 'C'],
success (res) {
console.log(res.tapIndex)
},
fail (res) {
console.log(res.errMsg)
}
})
付加と可能性のある有用な情報にはコメントが追加されています.他のuniappに関する質問やこの方法が理解できないところにはメッセージを残してください.できるだけ早く返事して解決してあげます.