以前寫過一篇關於微信小程序上拉加載,上拉刷新的文章,今天寫的是關於小程序網絡請求的封裝。
在這裡首先聲明一個小程序文檔的bug,導致大伙們在請求的時候,服務器收到不到參數的問題
示例代碼:
wx.request({ url: 'test.php', //僅為示例,並非真實的接口地址 data: { x: '' , y: '' }, header: { 'Content-Type': 'application/json' }, success: function(res) { console.log(res.data) } })
其中header 中的Content-Type,應該用小寫content-type才能讓服務器收到參數。讓我折騰的好久,改了服務器仍然不行,原來是這個問題。參數在request payload中,服務器不能收到,使用如下轉換之後
function json2Form(json) { var str = []; for(var p in json){ str.push(encodeURIComponent(p) + "=" + encodeURIComponent(json[p])); } return str.join("&"); }
最終還是認為是content-type的問題。最後改小寫就ok,覺得微信這麼牛逼的團隊,犯了一個很低級 的錯誤,把我開發者折騰的爬了。不說,上代碼吧。
1 、Http請求的類
import util from 'util.js'; /** * url 請求地址 * success 成功的回調 * fail 失敗的回調 */ function _get( url, success, fail ) { console.log( "------start---_get----" ); wx.request( { url: url, header: { // 'Content-Type': 'application/json' }, success: function( res ) { success( res ); }, fail: function( res ) { fail( res ); } }); console.log( "----end-----_get----" ); } /** * url 請求地址 * success 成功的回調 * fail 失敗的回調 */ function _post_from(url,data, success, fail ) { console.log( "----_post--start-------" ); wx.request( { url: url, header: { 'content-type': 'application/x-www-form-urlencoded', }, method:'POST', data:{data: data}, success: function( res ) { success( res ); }, fail: function( res ) { fail( res ); } }); console.log( "----end-----_get----" ); } /** * url 請求地址 * success 成功的回調 * fail 失敗的回調 */ function _post_json(url,data, success, fail ) { console.log( "----_post--start-------" ); wx.request( { url: url, header: { 'content-type': 'application/json', }, method:'POST', data:data, success: function( res ) { success( res ); }, fail: function( res ) { fail( res ); } }); console.log( "----end----_post-----" ); } module.exports = { _get: _get, _post:_post, _post_json:_post_json }
2、測試用例
2.1 get請求
//GET方式 let map = new Map(); map.set( 'receiveId', '0010000022464' ); let d = json_util.mapToJson( util.tokenAndKo( map ) ); console.log( d ); var url1 = api.getBaseUrl() + 'SearchTaskByReceiveId?data='+d; network_util._get( url1,d, function( res ) { console.log( res ); that.setData({ taskEntrys:res.data.taskEntrys }); }, function( res ) { console.log( res ); });
2.2 POST請求
//Post方式 let map = new Map(); map.set( 'receiveId', '0010000022464' ); let d = json_util.mapToJson( util.tokenAndKo( map ) ); console.log( d ); var url1 = api.getBaseUrl() + 'SearchTaskByReceiveId'; network_util._post( url1,d, function( res ) { console.log( res ); that.setData({ taskEntrys:res.data.taskEntrys }); }, function( res ) { console.log( res ); });
效果
以上就是本文的全部內容,希望本文的內容對大家的學習或者工作能帶來一定的幫助,同時也希望多多支持!