您好,登錄后才能下訂單哦!
這期內容當中小編將會給大家帶來有關如何在微信小程序中封裝網絡請求,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
網絡請求
網絡請求小程序提供了wx.request
, 仔細看一下 api
,這不就是n年前的 $.ajax
嗎,好古老啊。
// 官方例子 wx.request({ url: 'test.php', //僅為示例,并非真實的接口地址 data: { x: '' , y: '' }, header: { 'content-type': 'application/json' // 默認值 }, success: function(res) { console.log(res.data) } })
小程序支持ES6,那么就應該支持Promise 了,很開心~, 話不多說直接上代碼吧
Promise封裝
const baseUrl = 'https://api.it120.cc'; const http = ({ url = '', param = {}, ...other } = {}) => { wx.showLoading({ title: '請求中,請耐心等待..' }); let timeStart = Date.now(); return new Promise((resolve, reject) => { wx.request({ url: getUrl(url), data: param, header: { 'content-type': 'application/json' // 默認值 ,另一種是 "content-type": "application/x-www-form-urlencoded" }, ...other, complete: (res) => { wx.hideLoading(); console.log(`耗時${Date.now() - timeStart}`); if (res.statusCode >= 200 && res.statusCode < 300) { resolve(res.data) } else { reject(res) } } }) }) } const getUrl = (url) => { if (url.indexOf('://') == -1) { url = baseUrl + url; } return url } // get方法 const _get = (url, param = {}) => { return http({ url, param }) } const _post = (url, param = {}) => { return http({ url, param, method: 'post' }) } const _put = (url, param = {}) => { return http({ url, param, method: 'put' }) } const _delete = (url, param = {}) => { return http({ url, param, method: 'put' }) } module.exports = { baseUrl, _get, _post, _put, _delete }
使用
const api = require('../../utils/api.js') // 單個請求 api.get('list').then(res => { console.log(res) }).catch(e => { console.log(e) }) // 一個頁面多個請求 Promise.all([ api.get('list'), api.get(`detail/${id}`) ]).then(result => { console.log(result) }).catch(e => { console.log(e) })
登陸問題
做一個應用,肯定避免不了登錄操作。用戶的個人信息啊,相關的收藏列表等功能都需要用戶登錄之后才能操作。一般我們使用token做標識。
小程序并沒有登錄界面,使用的是 wx.login
。 wx.login
會獲取到一個 code
,拿著該 code
去請求我們的后臺會最后返回一個token
到小程序這邊,保存這個值為 token 每次請求的時候帶上這個值。
一般還需要把用戶的信息帶上比如用戶微信昵稱,微信頭像等,這時候就需要使用 wx.getUserInfo ,這里涉及到一個用戶授權的問題
帶上用戶信息就夠了嘛? too young too simple!我們的項目不可能只有小程序,相應的微信公眾平臺可能還有相應的App,我們需要把賬號系統打通,讓用戶在我們的項目中的賬戶是同一個。這就需要用到微信開放平臺提供的 UnionID 。
登陸
//app.js App({ onLaunch: function () { console.log('App onLaunch'); var that = this; // 獲取商城名稱 wx.request({ url: 'https://api.it120.cc/'+ that.globalData.subDomain +'/config/get-value', data: { key: 'mallName' }, success: function(res) { wx.setStorageSync('mallName', res.data.data.value); } }) this.login(); this.getUserInfo(); }, login : function () { var that = this; var token = that.globalData.token; // 如果有token if (token) { // 檢查token是否有效 wx.request({ url: 'https://api.it120.cc/' + that.globalData.subDomain + '/user/check-token', data: { token: token }, success: function (res) { // 如果token失效了 if (res.data.code != 0) { that.globalData.token = null; that.login(); // 重新登陸 } } }) return; } // 【1】調用微信自帶登陸 wx.login({ success: function (res) { // 【2】 拿到code去訪問我們的后臺換取其他信息 wx.request({ url: 'https://api.it120.cc/'+ that.globalData.subDomain +'/user/wxapp/login', data: { code: res.code }, success: function(res) { // 如果說這個code失效的 if (res.data.code == 10000) { // 去注冊 that.registerUser(); return; } // 如果返回失敗了 if (res.data.code != 0) { // 登錄錯誤 wx.hideLoading(); // 提示無法登陸 wx.showModal({ title: '提示', content: '無法登錄,請重試', showCancel:false }) return; } // 【3】 如果成功后設置token到本地 that.globalData.token = res.data.data.token; // 保存用戶信息 wx.setStorage({ key: 'token', data: res.data.data.token }) } }) } }) }, // 注冊?? [這個看需求] registerUser: function () { var that = this; wx.login({ success: function (res) { var code = res.code; // 微信登錄接口返回的 code 參數,下面注冊接口需要用到 wx.getUserInfo({ success: function (res) { var iv = res.iv; var encryptedData = res.encryptedData; // 下面開始調用注冊接口 wx.request({ url: 'https://api.it120.cc/' + that.globalData.subDomain +'/user/wxapp/register/complex', data: {code:code,encryptedData:encryptedData,iv:iv}, // 設置請求的 參數 success: (res) =>{ wx.hideLoading(); that.login(); } }) } }) } }) }, // 獲取用戶信息 getUserInfo:function() { wx.getUserInfo({ success:(data) =>{ this.globalData.userInfo = data.userInfo; wx.setStorage({ key: 'userInfo', data: data.userInfo }) return this.globalData.userInfo; } }) }, globalData:{ userInfo:null, subDomain:"34vu54u7vuiuvc546d", token: null } })
授權問題
getUserInfo: function () { // 先調用wx.getSetting 獲取用戶權限設置 wx.getSetting({ success(res) { console.log('1'); if (!res.authSetting['scope.userInfo']) { wx.authorize({ scope: 'scope.userInfo', success() { // 用戶已經同意小程序使用錄音功能,后續調用 wx.getUserInfo接口不會彈窗詢問 wx.getUserInfo({ success: (data) => { this.globalData.userInfo = data.userInfo; wx.setStorage({ key: 'userInfo', data: data.userInfo }) return this.globalData.userInfo; } }) } }) } else { console.log(2); } } }) },
上述就是小編為大家分享的如何在微信小程序中封裝網絡請求了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。