@rxliuli/vista是一個強大的同構請求攔截器庫,支援Fetch/XHR請求的統一攔截。它允許您在請求生命週期的不同階段進行幹預,實現請求監控、修改和模擬等各種功能。
npm install @rxliuli/vista # Or yarn add @rxliuli/vista # Or pnpm add @rxliuli/vista
import { Vista } from '@rxliuli/vista' new Vista() .use(async (c, next) => { console.log('Request started:', c.req.url) await next() }) .use(async (c, next) => { await next() console.log('Response data:', await c.res.clone().text()) }) .intercept()
new Vista() .use(async (c, next) => { c.req.headers.set('Authorization', 'Bearer token') await next() }) .intercept()
const cache = new Map() new Vista() .use(async (c, next) => { const key = c.req.url if (cache.has(key)) { c.res = cache.get(key).clone() return } await next() cache.set(key, c.res.clone()) }) .intercept()
new Vista() .use(async (c, next) => { const maxRetries = 3 let retries = 0 while (retries < maxRetries) { try { await next() break } catch (err) { retries++ if (retries === maxRetries) throw err } } }) .intercept()
new Vista() .use(async (c, next) => { await next() if (c.req.url === 'https://example.com/example') { const json = await c.res.json() json.id = 2 c.res = new Response(JSON.stringify(json), c.res) } }) .intercept()
主攔截器類,提供以下方法:
中介軟體接收兩個參數:
const vista = new Vista() vista.intercept() // When not needed vista.destroy()
是否支援非同步操作?
是的,中間件支援 async/await 語法。
Node.js 中是否支援攔截請求?
不可以,僅支援在瀏覽器中攔截請求。
歡迎提交問題和拉取請求!
麻省理工學院許可證
試試看並告訴我您的體驗,歡迎任何錯誤或功能回饋。
以上是@rxliuli/vista 簡介:一個用於 Fetch 和 XHR 的統一請求攔截器庫,具有中間件支援。的詳細內容。更多資訊請關注PHP中文網其他相關文章!