react request.js 函数封装

1.request.js  函数封装

import { Toast } from ‘antd-mobile‘;
import axios from ‘axios‘;
import store from ‘../store‘;
import { push } from ‘react-router-redux‘;
import qs from ‘qs‘;

// 请求路径
const BaseUrl = ‘https://www.baidu.com/‘; // 主机及端口

//axios默认配置请求的api基础地址
axios.defaults.baseURL = BaseUrl;
// axios.defaults.headers.post[‘Content-Type‘] = ‘application/x-www-form-urlencoded‘; // post 内容类型
// axios.defaults.headers.get[‘Content-Type‘] = ‘application/json;charset=utf-8‘; // get 内容类型
// axios.defaults.headers.post[‘Content-Type‘] = ‘multipart/form-data‘; // post 内容类型 formData 类型
axios.defaults.timeout = 30000; // 超时设置,超时进入错误回调,进行相关操作
axios.defaults.withCredentials = false; // 是否支持跨域cookie

const codeMessage = {
  200: ‘服务器成功返回请求的数据‘,
  201: ‘新建或修改数据成功。‘,
  202: ‘一个请求已经进入后台排队(异步任务)‘,
  204: ‘删除数据成功。‘,
  400: ‘发出的请求有错误,服务器没有进行新建或修改数据,的操作。‘,
  401: ‘用户没有权限(令牌、用户名、密码错误)。‘,
  403: ‘用户得到授权,但是访问是被禁止的。‘,
  404: ‘发出的请求针对的是不存在的记录,服务器没有进行操作‘,
  406: ‘请求的格式不可得。‘,
  410: ‘请求的资源被永久删除,且不会再得到的。‘,
  422: ‘当创建一个对象时,发生一个验证错误。‘,
  500: ‘服务器发生错误,请检查服务器‘,
  502: ‘网关错误‘,
  503: ‘服务不可用,服务器暂时过载或维护‘,
  504: ‘网关超时‘,
};

function checkStatus(response) {
  if (response.status >= 200 && response.status < 300) {
    return response;
  }
  const errortext = codeMessage[response.status] || response.statusText;
  // 提示框
  Toast.info(`请求错误 ${response.status}: ${response.url}`,1)
  const error = new Error(errortext);
  error.name = response.status;
  error.response = response;
  throw error;
}

/**
 * Requests a URL, returning a promise.
 *
 * @param  {string} url       The URL we want to request
 * @param  {object} [options] The options we want to pass to "fetch"
 * @return {object}           An object containing either "data" or "err"
 */
export default function request(url, options) {
  const defaultOptions = {
    credentials: ‘include‘,
  };
  const newOptions = { ...defaultOptions, ...options };
  if (
    newOptions.method === ‘POST‘ ||
    newOptions.method === ‘PUT‘ ||
    newOptions.method === ‘DELETE‘
  ) {
    if (!(newOptions.body instanceof FormData)) {
      newOptions.headers = {
        Accept: ‘application/json‘,
        ‘Content-Type‘: ‘application/x-www-form-urlencoded‘,
        ...newOptions.headers,
      };
      newOptions.data = qs.stringify(newOptions.body);
      newOptions.body = JSON.stringify(newOptions.body);
    } else {
      // newOptions.body is FormData
      newOptions.headers = {
        Accept: ‘application/json‘,
        ...newOptions.headers,
      };
    }
  }

  return axios(url, newOptions)
    .then(checkStatus)
    .then((response) => {
      // 成功的回调
      if (newOptions.method === ‘DELETE‘ || response.status === 204) {
        return response.text();
      }
      return response.data;
    })
    .catch((e) => {
      // 失败的回调
      const { dispatch } = store;
      const status = e.name;
      if (status === 401) {
        dispatch({
          type: ‘login/logout‘,
        });
        return;
      }
      if (status === 403) {
        dispatch(push(‘/exception/403‘));
        return;
      }
      if (status <= 504 && status >= 500) {
        dispatch(push(‘/exception/500‘));
        return;
      }
      if (status >= 404 && status < 422) {
        dispatch(push(‘/exception/404‘));
      }
    });
}

2.注:向后台传递数组的方法

需要在qs的方法中设置它的indices为false即可,如:

qs.stringify({ a: [‘b‘, ‘c‘, ‘d‘] }, { indices: false });

.

原文地址:https://www.cnblogs.com/crazycode2/p/9279298.html

时间: 2024-09-30 16:54:41

react request.js 函数封装的相关文章

js函数封装

1.随机数 <script> function rnd(n,m){ return parseInt(Math.random()*(m-n)+n); } var a=rnd(45,47); alert(a); </script> 2.个位数补0 <script> function toDou(n){ return n<10?'0'+n:''+n; } var a=6; alert(toDou(a)); </script> 3. <script>

常用JS函数封装

//获取元素属性 function getStyle(obj,attr) { return obj.currentStyle ?  obj.currentStyle[attr] : getComputedStyle(obj,0)[attr]; } //运动函数 function doMove(obj,attr,speed,target,endFn) { clearInterval(obj.timer); speed = parseInt(getStyle(obj,attr))<target ?

js函数封装,使一个obj的透明度渐变,淡入淡出(兼容IE)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-

用js函数封装一个上下滑动的轮播图,调用任意

<!DOCTYPE html><html><head> <meta charset="utf-8"> <title></title> <style type="text/css"> .tab{ width: 500px; height: 300px; border: 1px solid red; margin: 0 auto; overflow: hidden; position:

js匿名函数封装

js匿名函数封装 (function(root,factory){ typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define === 'function' && define.amd ? define(factory) : (root.Demo = factory()); })(this,function(){ funct

JS——tab函数封装

1.为li标签添加index属性,这个属性正好就是span标签数组的index值 2.函数封装适合页面有多个tab切换,需要注意的在获取的li标签和span标签对象时,必须将对应div对象作为参数传入 li标签添加index属性 <!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title></title> <s

如何编写高质量的 JS 函数(3) --函数式编程[理论篇]

本文首发于 vivo互联网技术 微信公众号 链接:https://mp.weixin.qq.com/s/EWSqZuujHIRyx8Eb2SSidQ作者:杨昆 [编写高质量函数系列]中, <如何编写高质量的 JS 函数(1) -- 敲山震虎篇>介绍了函数的执行机制,此篇将会从函数的命名.注释和鲁棒性方面,阐述如何通过 JavaScript 编写高质量的函数. <如何编写高质量的 JS 函数(2)-- 命名/注释/鲁棒篇>从函数的命名.注释和鲁棒性方面,阐述如何通过 JavaScri

Vue ---- vue的基本使用 文本/事件/属性指令 补充: js面向对象 js函数

目录 日考题(知识点)??? 1.http 与 https 2.前端布局 3.orm 大概的大纲?? vue框架??? 1.创建vue实例 2.挂载点 3.data 变量 4.methods 方法 5.插值表达式 6.文本指令 7.事件指令 8.属性指令 9.补充:面向对象js 10.补充:js函数 日考题(知识点)??? 1.http 与 https http 与 tcp : 一个是应用层, 传输层, http 协议传输层采用的是tcp http的特点: 无状态 无连接 先客户端发送请求, 服

JS函数柯里化

第一次看到柯里化这个词的时候,还是在看一篇算法相关的博客提到把函数柯里化,那时一看这个词就感觉很高端,实际上当你了解了后才发现其实就是高阶函数的一个特殊用法. 果然是不管作用怎么样都要有个高端的名字才有用. 首先看看柯里化到底是什么? 维基百科上说道:柯里化,英语:Currying(果然是满满的英译中的既视感),是把接受多个参数的函数变换成接受一个单一参数(最初函数的第一个参数)的函数,并且返回接受余下的参数而且返回结果的新函数的技术. 看这个解释有一点抽象,我们就拿被做了无数次示例的add函数