onion-interceptor • Docs
函数: createFetchInterceptor()
createFetchInterceptor(...
intercepters
):OnionInterceptor
创建 fetch 拦截器
参数
参数名 | 类型 | 描述 |
---|---|---|
...intercepters | Middleware <Context , any >[] | 可传入多个拦截器中间件 |
返回值类型
示例
typescript
import { createFetchInterceptor } from "onion-interceptor";
import { interceptors } from 'path of interceptors'
// 这里 interceptors 是一个中间件数组
createFetchInterceptor(...interceptors)
// 直接使用 fetch ,(会污染 全局 window.fetch , 复杂项目中 不建议使用)
fetch(...)