微信小程序-wx.request
微信在请求数据时提供wx.request(funciton)的方式获取数据
wx.request({ url: 'test.php', //仅为示例,并非真实的接口地址 data: { x: '' , y: '' }, header: { 'content-type': 'application/json' }, success: function(res) { console.log(res.data) } })
其中的url
,header
,success
,fail
以及complete
和普通的http请求是一样
参数和函数介绍看微信小程序开发api文档,这里不做详解
谢了一个封装好的回调函数
供以后用到时可以拿来用
/** * 封转wx.request的post提交请求方式,通过回调函数处理相关数据传递 * @url:请求地址 * @postData:请求参数 * @doSuccess:请求成功回调函数 * @doFail:请求失败回调函数 * @doComlete:请求时执行函数 */ function rewriteWXRequest(url,postData,doSuccess,doFail,doComplete){ //console.log(url); wx.request({ url: url, data:postData, method: 'POST', success: function(res){ if(typeof doSuccess == "function"){ doSuccess(res); } }, fail: function() { if(typeof doFail == "function"){ doFail(); } }, complete: function() { if(typeof doComplete == "function"){ doComplete(); } } }); }
微信其他相关上传,下载等问题:http://www.cnblogs.com/dragondean/p/5921088.html
知识只有共享才能传播,才能推崇出新的知识,才能学到更多,这里写的每一篇文字/博客,基本都是从网上查询了一下资料然后记录下来,也有些是原滋原味搬了过来,也有时加了一些自己的想法