详解React Native网络请求fetch简单封装
程序员文章站
2023-02-24 08:15:30
在原生应用开发中,为了方便业务开发人员使用,我们一般会对网络库进行一些上传封装,而不是直接使用,例如基于afnetworking库的ios请求上层封装,android的诸如...
在原生应用开发中,为了方便业务开发人员使用,我们一般会对网络库进行一些上传封装,而不是直接使用,例如基于afnetworking库的ios请求上层封装,android的诸如volley,retrofit等。在前端开发中,一般使用fetch进行网络请求,相关介绍请查看fetch示例。其实对于开发来说,系统提供的fetch已经够用了,但是为了代码的整体结构,建议对fetch进行简单的get/post封装。
若不封装,我们看一下传统的写法:
fetch('http://www.pintasty.cn/home/homedynamic', { method: 'post', headers: { //header 'token': 'eyj0exaioijkv1qilcjhbgcioijiuzi1nij9.eyj1c2vyswqioijvltlizgjhnjbjmjzimdqwzgjimtmwywrhywvln2fkytg2iiwizxhwaxjhdglvblrpbwuioje0nzuxmtg4odu4ntd9.imbjxrfydnyfptk2_q2jffb2rc5dhtzszophg_daunu' }, body: json.stringify({ //参数 'start': '0', 'limit': '20', 'isneedcategory': true, 'lastrefreshtime': '2016-09-25 09:45:12' }) }) .then((response) => response.json()) //把response转为json .then((responsedata) => { // 上面的转好的json alert(responsedata); / // console.log(responsedata); }) .catch((error)=> { alert('错误了'); }) }
是不是看着有一种密集恐惧症,并且代码的风格也不是很好。所以,为了方便使用,我们需要将公共的部分封装起来,然后只需要通过参数的方式对外暴露出诸如请求url,请求参数,header就可以了。
var httputil = {}; /** * get请求 */ httputil.get = function(url, params, headers) { if (params) { let paramsarray = []; //encodeuricomponent object.keys(params).foreach(key => paramsarray.push(key + '=' + params[key])) if (url.search(/\?/) === -1) { url += '?' + paramsarray.join('&') } else { url += '&' + paramsarray.join('&') } } return new promise(function (resolve, reject) { fetch(url, { method: 'get', headers: headers, }) .then((response) => { if (response.ok) { return response.json(); } else { reject({status:response.status}) } }) .then((response) => { resolve(response); }) .catch((err)=> { reject({status:-1}); }) }) } /** * post请求 formdata 表单数据 */ httputil.post = function(url, formdata, headers) { return new promise(function (resolve, reject) { fetch(url, { method: 'post', headers: headers, body:formdata, }) .then((response) => { if (response.ok) { return response.json(); } else { reject({status:response.status}) } }) .then((response) => { resolve(response); }) .catch((err)=> { reject({status:-1}); }) }) } export default httputil;
还是上面的例子,我们怎么使用呢?
let formdata = new formdata(); formdata.append("id",1060); let url='http://www.pintasty.cn/home/homedynamic'; let headers=''; httputil.post(url,formdata,headers).then((json) => { //处理 请求结果 },(json)=>{ //todo 处理请求fail })
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: Bootstrap提示框效果的实例代码
下一篇: 解决Vue页面固定滚动位置的处理办法