Skip to content

onion-interceptorDocs


函数: createFetchInterceptor()

createFetchInterceptor(...intercepters): OnionInterceptor

创建 fetch 拦截器

参数

参数名类型描述
...interceptersMiddleware<Context, any>[]可传入多个拦截器中间件

返回值类型

OnionInterceptor

示例

typescript
import { createFetchInterceptor } from "onion-interceptor";
import { interceptors } from  'path of interceptors'

// 这里 interceptors 是一个中间件数组
createFetchInterceptor(...interceptors)

// 直接使用 fetch ,(会污染 全局 window.fetch , 复杂项目中 不建议使用)

fetch(...)

查看源码

index.ts:47

Released under the MIT License.