以前写过一篇关于微信小程序上拉加载,上拉刷新的文章,今天写的是关于小程序网络请求的封装。
在这里首先声明一个小程序文档的bug,导致大伙们在请求的时候,服务器收到不到参数的问题
示例代码:
PHP',//仅为示例,并非真实的接口地址
data: {
x: '',y: ''
},header: {
'Content-Type': 'application/json'
},success: function(res) {
console.log(res.data)
}
})
其中header 中的Content-Type,应该用小写content-type才能让服务器收到参数。让我折腾的好久,改了服务器仍然不行,原来是这个问题。参数在request payload中,服务器不能收到,使用如下转换之后
最终还是认为是content-type的问题。最后改小写就ok,觉得微信这么牛逼的团队,犯了一个很低级 的错误,把我开发者折腾的爬了。不说,上代码吧。
1 、Http请求的类
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----" );
}
/**
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,fail ) {
console.log( "----_post--start-------" );
wx.request( {
url: url,header: {
'content-type': 'application/x-www-form-urlencoded',},method:'POST',data:{data: data},fail: function( res ) {
fail( res );
}
});
console.log( "----end-----_get----" );
}
/**
- url 请求地址
- success 成功的回调
- fail 失败的回调
*/
function _post_json(url,header: {
'content-type': 'application/json',data:data,fail: function( res ) {
fail( res );
}
});
console.log( "----end----_post-----" );
}
module.exports = {
_get: _get,_post:_post,_post_json:_post_json
}
2、测试用例
2.1 get请求
2.2 POST请求