当前位置:   article > 正文

为fetch添加拦截器功能_手写fetch请求拦截

手写fetch请求拦截

fetch 添加拦截器拦截器

使用过axios的便会知道axios 有axios.interceptors.request.use请求拦截器与service.interceptors.response.use响应拦截器,可以请求前和,then,catch前统一处理响应信息或者response

expand_fetch.js

const req_interceptors = []   //请求拦截方法存放
const res_interceptors = []	//响应拦截方法存放

 
function  expand_fetch( url, option = { } ){ 
	if( !option.method ){
		option.method = 'GET'    
	 }
	
	//多个请求拦截器依次更改option 
	req_interceptors.forEach( fn => option = fn(option) )
	
	return  new Promise((resolve,reject)=>{

					//使用原生fetch
					fetch(url,option).then(( res )=>{‘
					
						//多个响应拦截器依次更改res 
						res_interceptors.forEach( fn => res = fn(res) )
						
						resolve(res)
					})
					.catch((error)=>{
						reject(error)
					})
			})
}

//挂载添加和删除拦截器的方法
expand_fetch.interceptors = {
		request:{ use : (fn)=>{
						req_interceptors.push(fn)
						return fn
						},
					eject:(data)=>{
						if(req_interceptors.indexOf(data) !== -1){
							req_interceptors.splice(req_interceptors.indexOf(data),1)
						}
					}

		},
		response:{ use : (fn)=>{
							res_interceptors.push(fn)
							return fn
						}},
						eject:(data)=>{
						if(res_interceptors.indexOf(data) !== -1){
							res_interceptors.splice(res_interceptors.indexOf(data),1)
						}
					}
}

export default expand_fetch
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55

使用

import Fetch from './expand_fetch.js'

//为post数据转为 json 发送
const c_req = Fetch.interceptors.request.use((option)=>{
		if(option.method === "POST"){
				option.body = JSON.stringify(option.body)
		}

		return option
})

//直接获取到返回内容的数据
const c_res = Fetch.interceptors.response.use((res)=>{
		if(res.code === 200 && res.data ){
			return res.data
		}
		return res
})

//清除拦截器
Fetch.interceptors.request.eject(c_req)
Fetch.interceptors.response.eject(c_res)


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/257399
推荐阅读
相关标签
  

闽ICP备14008679号