美文网首页
react使用fetch封装请求方法

react使用fetch封装请求方法

作者: 虎牙工务员刘波 | 来源:发表于2021-04-14 12:55 被阅读0次

方法有很多种,这里贴一个比较优雅又简单易懂的。用class类写法,new一个实例方法。

其中qs是包,类似于url拼接的方法,自行npm安装: npm install qs --save
我这里fetch使用的是dva的fetch,也可以自行使用自带的fetch

// fetchUtil.js 文件

import qs from 'qs';
import { message } from 'antd';

const fetch = require('dva').fetch;  //如需要使用原生fetch可以把这行注释了
const { stringify, parse } = qs;

const checkStatus = res => {
  if (200 >= res.status < 300) {
    return res;
  }
  message.error(`网络请求失败,${res.status}`);
  const error = new Error(res.statusText);
  error.response = response;
  throw error;
};

/**
 *  捕获成功登录过期状态码等
 * @param res
 * @returns {*}
 */
const judgeOkState = async res => {
  const cloneRes = await res.clone().json();
  //TODO:可以在这里管控全局请求
  if (cloneRes.code !== 200) {
    message.error(`${cloneRes.msg}${cloneRes.code}`);
  }
  return res;
};

/**
 * 捕获失败
 * @param error
 */
const handleError = error => {
  if (error instanceof TypeError) {
    message.error(`网络请求失败啦!${error}`);
  }
  return {   //防止页面崩溃,因为每个接口都有判断res.code以及data
    code: -1,
    data: false,
  };
};

class http {
  /**
   *静态的fetch请求通用方法
   * @param url
   * @param options
   * @returns {Promise<unknown>}
   */
  static async staticFetch(url = '', options = {}) {

    const defaultOptions = {
      /*允许携带cookies*/
      credentials: 'include',
      /*允许跨域**/
      mode: 'cors',
      headers: {
        token: null,
        Authorization: null,
        // 当请求方法是POST,如果不指定content-type是其他类型的话,默认为如下↓,要求参数传递样式为 key1=value1&key2=value2,但实际场景以json为多
        // 'content-type': 'application/x-www-form-urlencoded',
      },
    };
    if (options.method === 'POST' || 'PUT') {
      defaultOptions.headers['Content-Type'] = 'application/json; charset=utf-8';
    }
    const newOptions = { ...defaultOptions, ...options };
    console.log('newOptions', newOptions);
    return fetch(url, newOptions)
      .then(checkStatus)
      .then(judgeOkState)
      .then(res => res.json())
      .catch(handleError);
  }

  /**
   *post请求方式
   * @param url
   * @returns {Promise<unknown>}
   */
  post(url, params = {}, option = {}) {
    const options = Object.assign({ method: 'POST' }, option);
    //一般我们常用场景用的是json,所以需要在headers加Content-Type类型
    options.body = JSON.stringify(params);

    //可以是上传键值对形式,也可以是文件,使用append创造键值对数据
    if (options.type === 'FormData' && options.body !== 'undefined') {
      let params = new FormData();
      for (let key of Object.keys(options.body)) {
        params.append(key, options.body[key]);
      }
      options.body = params;
    }
    return http.staticFetch(url, options); //类的静态方法只能通过类本身调用
  }

  /**
   * put方法
   * @param url
   * @returns {Promise<unknown>}
   */
  put(url, params = {}, option = {}) {
    const options = Object.assign({ method: 'PUT' }, option);
    options.body = JSON.stringify(params);
    return http.staticFetch(url, options); //类的静态方法只能通过类本身调用
  }

  /**
   * get请求方式
   * @param url
   * @param option
   */
  get(url, option = {}) {
    const options = Object.assign({ method: 'GET' }, option);
    return http.staticFetch(url, options);
  }
}

const requestFun = new http(); //new生成实例
export const { post, get, put } = requestFun;
export default requestFun;

如何使用

import requestFun from '../utils/fetchUtil';   //引入
import qs from 'qs';
 
const { stringify } = qs;
const {post,get} = requestFun;
 
//get方式
export async function fetchData1(params) {
  return get(`/api/bbb?${stringify(params)}`);
}
 
//post方式
export async function fetchData2(params) {
  return post(`/api/aaa`,params);
}

有问题可以提出~~~,应该没多大问题

相关文章

网友评论

      本文标题:react使用fetch封装请求方法

      本文链接:https://www.haomeiwen.com/subject/rqvklltx.html