首頁 > web前端 > js教程 > @rxliuli/vista 簡介:一個用於 Fetch 和 XHR 的統一請求攔截器庫,具有中間件支援。

@rxliuli/vista 簡介:一個用於 Fetch 和 XHR 的統一請求攔截器庫,具有中間件支援。

Patricia Arquette
發布: 2025-01-07 00:19:40
原創
703 人瀏覽過

Introduction to @rxliuli/vista: A unified request interceptor library for both Fetch and XHR with middleware support.
Introduction to @rxliuli/vista: A unified request interceptor library for both Fetch and XHR with middleware support.

@rxliuli/vista是一個強大的同構請求攔截器庫,支援Fetch/XHR請求的統一攔截。它允許您在請求生命週期的不同階段進行幹預,實現請求監控、修改和模擬等各種功能。

特徵

  • ?同時支援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()
登入後複製

API參考

遠景級

主攔截器類,提供以下方法:

  • use(middleware): 新增中間件
  • Intercept():開始攔截請求
  • destroy():停止攔截請求

中介軟體上下文

中介軟體接收兩個參數:

  • context:包含請求和回應訊息
    • req:請求對象 res:回應對象
    • type:請求類型,fetch或xhr
  • next:呼叫下一個中間件或原始請求的函數

常問問題

  1. 如何停止攔截?
   const vista = new Vista()
   vista.intercept()
   // When not needed
   vista.destroy()
登入後複製
  1. 是否支援非同步操作?
    是的,中間件支援 async/await 語法。

  2. Node.js 中是否支援攔截請求?

不可以,僅支援在瀏覽器中攔截請求。

謝謝

  • xhook:一個實現xhr攔截的函式庫,有助於一些功能的實作。
  • hono:優秀的Web伺服器框架,它的API提供了許多靈感。

貢獻指南

歡迎提交問題和拉取請求!

執照

麻省理工學院許可證

試試看並告訴我您的體驗,歡迎任何錯誤或功能回饋。

以上是@rxliuli/vista 簡介:一個用於 Fetch 和 XHR 的統一請求攔截器庫,具有中間件支援。的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:dev.to
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板