微信小程序 showModal 的内容能居中吗
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序 showModal 的内容能居中吗相关的知识,希望对你有一定的参考价值。
参考技术A \r\n可以换行的,在开发者工具上显示不换行,但是在真是环境下是正常换行的。 参考技术B wx.showModal(title: '提示',
content: '这是一个模态弹窗',
success: function(res)
if (res.confirm)
console.log('用户点击确定')
else if (res.cancel)
console.log('用户点击取消')
);本回答被提问者采纳
微信小程序wx.request,wx.showToast,wx.showLoading,wx.showModal的简易封装
/**
* request 配置
*/
const request = (url, method = ‘GET‘, data = {}) => {
const ULR = url.indexOf(‘http‘) !== -1 ? url : getApp().globalData.env.BASE_URL + url
return new Promise((resolve, reject) => {
wx.request({
url: ULR,
data: data,
method: method,
success(res) {
resolve(res.data)
},
fail(res) {
reject(res)
}
})
})
}
/**
* showToast
*/
const showToast = (title, icon = ‘none‘, speed = 2000) => {
wx.showToast({
title: title,
icon: icon,
duration: speed
})
}
/**
* showLoading
*/
const showLoading = title => {
wx.showLoading({
title: title,
mask: true
})
}
/**
* showModal
*/
const showModal = (title, content, callback) => {
wx.showModal({
title: title,
content: content,
success(res) {
callback(res)
}
})
}
module.exports = {
request,
showToast,
showLoading,
showModal
}
以上是关于微信小程序 showModal 的内容能居中吗的主要内容,如果未能解决你的问题,请参考以下文章
微信小程序weui dialog封装,兼容wx.showModal
微信小程序中如何实现view标签中的图片居中显示,或者view居中?
微信小程序wx.request,wx.showToast,wx.showLoading,wx.showModal的简易封装