這篇文章主要介紹微信小程序開發(fā)中如何封裝HTTP請(qǐng)求方法,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
明山網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián)建站,明山網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為明山近1000家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)網(wǎng)站建設(shè)要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的明山做網(wǎng)站的公司定做!
HTTP請(qǐng)求方法的封裝
在小程序中http請(qǐng)求是很頻繁的,但每次都打出wx.request是很煩的,而且代碼也是冗余的,所以我們要把他封裝起來(lái)
首先要在utils文件夾中新建一個(gè)js,我命名為request.js,在里面封裝出post和get的請(qǐng)求,記得最后要聲明出來(lái)
//封裝請(qǐng)求 const app = getApp() let host = app.globalData.url /** * POST 請(qǐng)求 * model:{ * url:接口 * postData:參數(shù) {} * doSuccess:成功的回調(diào) * doFail:失敗回調(diào) * } */ function postRequest(model) { wx.request({ url: host + model.url, header: { "Content-Type": "application/x-www-form-urlencoded" }, method: "POST", data: model.data, success: (res) => { model.success(res.data) }, fail: (res) => { model.fail(res.data) } }) } /** * GET 請(qǐng)求 * model:{ * url:接口 * getData:參數(shù) {} * doSuccess:成功的回調(diào) * doFail:失敗回調(diào) * } */ function getRequest(model) { wx.request({ url: host + model.url, data: model.data, success: (res) => { model.success(res.data) }, fail: (res) => { model.fail(res.data) } }) } /** * module.exports用來(lái)導(dǎo)出代碼 * js中通過(guò) let call = require("../util/request.js") 加載 */ module.exports = { postRequest: postRequest, getRequest: getRequest }
這一步非常重要記得添加!
module.exports = { postRequest: postRequest, getRequest: getRequest }
使用時(shí)就在相應(yīng)的頁(yè)面頂部調(diào)用,Page外部噢
let call = require("../../utils/request.js")
使用的時(shí)候↓
get
//獲取廣告圖 call.getRequest({ url:'GetAd', success:(res)=>{ //箭頭函數(shù)沒有指針問(wèn)題 this.setData({ urlItem: res.data }) } })
post
call.postRequest({ url: 'addorder', data: { shop_id: that.data.shop_id, user_id: app.globalData.user_id, coupon_sn: that.data.coupon_sn, carType: that.data.car_type, appointtime: that.data.toTime }, success:(res)=>{ console.log(res) wx.navigateTo({ url: '../selectPay/selectPay?order_sn=' + res.data.order_sn + '&fee=' + res.data.real_pay + "&order_id=" + res.data.order_id, }) } })
以上是“微信小程序開發(fā)中如何封裝HTTP請(qǐng)求方法”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
當(dāng)前文章:微信小程序開發(fā)中如何封裝HTTP請(qǐng)求方法
URL地址:http://jinyejixie.com/article24/gdphce.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站改版、用戶體驗(yàn)、域名注冊(cè)、品牌網(wǎng)站設(shè)計(jì)、網(wǎng)站策劃、網(wǎng)站導(dǎo)航
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)