封装的fetch
包含功能点
- 同一时间段重复请求会被缓存过滤掉
- timeout
- 取消请求
- 支持自定义cache store,比如
localStorage
,也可以是实现了ICacheStore
接口的数据库
使用
封装ajax
import Ajax from "https://deno.land/x/jw_fetch@v0.4.1/mod.ts";
Ajax.defaults.baseURL = "/api";
export const ajax = new Ajax();
默认在同一时间请求的接口(即还没有响应),会过滤掉,只请求一次。规则是对baseURL、url、method、data、headers作为唯一key,代码如下:
protected getUniqueKey(config: AjaxConfig) {
const headers = config.headers;
const keys = [
config.baseURL,
config.url,
config.method,
config.data ? JSON.stringify(config.data) : "",
];
if (headers) {
Object.keys(headers).forEach((key) =>
keys.push(key + "=" + headers[key])
);
}
return md5(keys.filter(Boolean).join("_"));
}
这个方法可像上面一样重写。
拦截
// 请求拦截
ajax.interceptors.request.use(function (mergedConfig) {
mergedConfig.headers = mergedConfig.headers || {};
mergedConfig.headers.token = "abcd";
return mergedConfig;
}, function (err) {
return Promise.reject(err);
});
// 响应拦截
ajax.interceptors.response.use(function (data) {
return data.slice(0, 10);
}, function (err) {
return Promise.reject(err);
});
获取可取消的请求
const { promise, abort } = ajax.getAbortResult(url, data, options);
promise.then((result) => console.log(result));
abort(); // 取消请求
const { promise2, abort2 } = ajax.postAbortResult(url, data, options);
promise2.then((result) => console.log(result));
abort2(); // 取消请求
ajax配置项
url
Type: string
method
Type: string
一般是get、post
baseURL
Type: string
请求url的前缀
headers
Type: any
添加的请求头
data
Type: any
请求数据,一般是个对象{}。
timeout
Type: number
Default: 2 * 60 * 1000
,2分钟
过期时间,单位ms。从请求开始,到这个时间如果接口没有响应,则会返回一个失败的promise。
timeoutErrorMessage
Type: string
Default: timeout
过期时间错误提示
timeoutErrorStatus
Type: number
Default: 504
过期时间状态码
credentials
Type: string
Default: include
- omit:忽略cookie的发送
- same-origin: 表示cookie只能同域发送,不能跨域发送
- include: cookie既可以同域发送,也可以跨域发送
mode
Type: string
Default: cors
- same-origin:该模式是不允许跨域的,它需要遵守同源策略,否则浏览器会返回一个error告知不能跨域;其对应的response type为basic。
- cors: 该模式支持跨域请求,顾名思义它是以CORS的形式跨域;当然该模式也可以同域请求不需要后端额外的CORS支持;其对应的response type为cors。
- no-cors: 该模式用于跨域请求但是服务器不带CORS响应头,也就是服务端不支持CORS;这也是fetch的特殊跨域请求方式;其对应的response type为opaque。
stoppedErrorMessage
Type: string
Default: Ajax has been stopped!
当所有ajax停止后,提示错误信息。
isFile
Type: boolean
是否属于文件上传,如果是这样,会根据传递的data,创建一个FormData
isNoAlert
Type: boolean
是否要禁止默认提示错误信息。如果需要自己处理错误消息,则开启此项。
isUseOrigin
Type: boolean
为true时,直接返回response,不再处理结果。 一般返回结果不是json对象,比如是流时需要设置此项。
isEncodeUrl
Type: boolean
get请求时是否要进行浏览器编码
isOutStop
Type: boolean
当所有ajax请求停止时,是否要跳出请求。
signal
Type: AbortSignal
主动控制取消请求时可传递此参数,或者直接使用ajaxAbortResult方法。例如:
const controller = new AbortController();
const {signal} = controller;
cacheTimeout
Type: number
缓存时间
- 如果是-1,代表不清除缓存。
- 如果是0,代表不使用缓存。
- 如果大于0,代表要缓存多长时间,单位是ms。
originHeaders
Type: Headers
如果本身是在接口里进行的二次请求,传递原始的headers
defaultInjectHeaderKeys
Type: string[]
Default:
["x-request-id", "x-b3-traceid", "x-b3-spanid", "x-b3-parentspanid", "x-b3-sampled"]
配合originHeaders使用,如果有这几个字段,将会默认注入
cacheStore
Type: ICacheStore
可以参考src/store.ts
这个文件中的LocalStore
,数据存储在localStorage
中。
export interface LocalValue {
td: number | undefined;
value: any;
}
export class LocalStore implements ICacheStore {
timeoutMap: Map<string, number>;
constructor() {
this.timeoutMap = new Map<string, number>();
}
get(key: string) {
const val = localStorage.getItem(key);
if (val) {
const json = JSON.parse(val) as LocalValue;
// console.log("get json", json);
if (json.td && Date.now() >= json.td) { // expired
// console.debug(`Cache expired: ${key} and will be deleted`);
this.delete(key);
return;
}
return json.value;
}
}
set(key: string, value: any, options?: { ttl: number }) {
const val: LocalValue = {
td: options?.ttl ? Date.now() + options.ttl * 1000 : undefined,
value,
};
localStorage.setItem(key, JSON.stringify(val));
if (options?.ttl) {
const st = setTimeout(() => {
this.delete(key);
}, options.ttl * 1000);
this.timeoutMap.set(key, st);
}
}
delete(key: string) {
localStorage.removeItem(key);
clearTimeout(this.timeoutMap.get(key));
this.timeoutMap.delete(key);
}
clear(): void | Promise<void> {
localStorage.clear();
for (const st of this.timeoutMap.values()) {
clearTimeout(st);
}
this.timeoutMap.clear();
}
has(key: string): boolean | Promise<boolean> {
return localStorage.getItem(key) !== null;
}
size(): number | Promise<number> {
return localStorage.length;
}
}