码迷,mamicode.com
首页 > 微信 > 详细

微信小程序wx.request,wx.showToast,wx.showLoading,wx.showModal的简易封装

时间:2020-05-18 18:59:10      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:const   http   tap   exp   module   eth   ESS   ast   load   


/**
 * 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
}

微信小程序wx.request,wx.showToast,wx.showLoading,wx.showModal的简易封装

标签:const   http   tap   exp   module   eth   ESS   ast   load   

原文地址:https://www.cnblogs.com/sq652366/p/12912026.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!