美文网首页
2018-06-13

2018-06-13

作者: 代码小刀 | 来源:发表于2018-06-25 10:01 被阅读0次

微信小程序开发中个人总结

1.网络请求封装

function json2Form(json) {

    var str = [];

    for (var p in json) {

        str.push(encodeURIComponent(p) + "=" + encodeURIComponent(json[p]));

    }

    return str.join("&");

}

/**

* 网络请求

* @param app(token,url)

* @param method请求方式

* @param params请求参数

* @param

*/

function request(app, urlPath, method, params, onsuccess, onfail) {

    wx.showLoading({

        title: '加载中',

        mask: true

    });

    wx.request({

        url: app.globalData.url + urlPath,

        method: method,

        header: {

            'content-type': method == 'POST' ?

                'application/x-www-form-urlencoded' : 'application/json'

        },

        data: method == 'POST' ? json2Form(params) : params,

        success: function (res) {

            if (urlPath == 'wx/cust/getOneQueueByShopId' || urlPath == 'wx/cust/deletequeue' || urlPath == 'wx/cust/deletequeue') {

                onsuccess(res)

                wx.hideLoading()

            }

            else if (res.data.state) {

                wx.hideLoading()

                onsuccess(res.data)

            } else {

                if (res.data.code === '110') {

                    wx.hideLoading()

                    wx.showToast({

                        title: '登录失效,请刷新界面',

                        icon: 'none'

                    })

                    checkLogin(app)

                } else {

                    wx.hideLoading()

                    wx.showToast({

                        title: '请求错误:' + res.data.message,

                        icon: 'none'

                    })

                }

            }

        }, fail: function (res) {

          console.log(res)

            onfail(res.data)

            setTimeout(function () {

                wx.hideLoading()

                wx.showToast({

                    title: res.errMsg,

                    icon: 'none'

                })

            }, 1000)

        }

    })

}

2.微信小程序支付

function wxpay(app, orderId, couponsId, redirectUrl) {

    wx.request({

        url: app.globalData.url + 'wx/pay/info',

        data: {

            token: app.globalData.token,

            orderId: orderId,

            couponsId: couponsId,

            payType: 2

        },

        header: {

            "Content-Type": "application/x-www-form-urlencoded"

        },

        method: 'POST',

        success: function (res) {

            if (res.data.state) {

                var retData = res.data.data;

                // 发起支付

                wx.requestPayment({

                    timeStamp: retData.timeStamp,

                    nonceStr: retData.nonceStr,

                    package: retData.packageValue,

                    signType: retData.signType,

                    paySign: retData.paySign,

                    success: function (res) {

                        wx.redirectTo({

                            url: '/pages/service/pay-success/index?status=1&&orderId=' + orderId

                        })

                    },

                    fail: function (res) {

                        if (res.errMsg == "requestPayment:fail cancel") {

                            wx.request({

                                url: app.globalData.url + 'wx/pay/cancel',

                                data: {

                                    token: app.globalData.token,

                                    payId: retData.payId

                                },

                                header: {

                                    "Content-Type": "application/x-www-form-urlencoded"

                                },

                                method: 'POST',

                                success: function (res) {

                                },

                                fail: function (e) {

                                }

                            });

                        }

                        wx.redirectTo({

                            url: '/pages/service/pay-success/index?status=0&&orderId=' + orderId

                        })

                    }

                })

            } else {

                wx.showToast({title: '发起支付失败:' + res.data.message});

            }

        }

    })

}

//      header: {"Content-Type": "application/x-www-form-urlencoded"}不同请求的请求头部不一样

相关文章

  • 客服部新宙六月第二周周中检视

    2018-06-13 星期三 2018-06-13 一、工作方面 1/本周结案率要求达到55% 目前案件数量225...

  • 2018-06-13

    2018-06-13 2018-06-13 《六项精进》日精进打卡 姓名:张云飞 宁波市百雷仕电动工具有限公司 【...

  • webstorm 激活破解方法

    2018-06-13最新更新:最新License serve:https://s.tuzhihao.com:666...

  • 日精进打卡(第341天)

    2018-06-13 姓名:李义 公司:........ 组别:259期利他二组 【知~学习】 背诵 六项精进大纲...

  • 富贵花开3

    富贵花开 黄土高原的北战 2018-06-13 10:56 · 字数 3634 · 阅读 10 · 日记本 三:《...

  • 2018-06-13

    2018-06-13· 字数 546· 阅读 104· 日记本 姓名:周富强 公司:厦门大科机械有限公司 日精进打...

  • 2019在职MBA考试科目有哪些?什么时候考试?

    2019在职MBA考试科目有哪些?什么时候考试? 都学课堂 2018-06-13 浏览量: 15112 随着社会的...

  • 每日父母课堂分享

    日期 2018-06-13 分享内容 【我们每天都忙碌于具体的事务,真正用来思考的时间其实很少,甚至没有。】 而我...

  • 动机至善,私心了无

    2018-06-13 (稻盛哲学学习会)打卡第66天 姓名:祝新华 部门:业务部 组别:待定 【知~学习】 《京...

  • 2-3-8 SeekBar

    标注:本文为个人整理,仅做自己学习参考使用,请勿转载和转发2018-06-13: 初稿。参考博主coder-pig...

网友评论

      本文标题:2018-06-13

      本文链接:https://www.haomeiwen.com/subject/djijeftx.html