首頁 > web前端 > js教程 > 帶有代理和獲取的日誌系統

帶有代理和獲取的日誌系統

Patricia Arquette
發布: 2024-12-03 09:12:10
原創
528 人瀏覽過

Logging System with Proxy and Fetch

  1. 代理物件:fetchLogger 包裝了 fetch 函數。
    它使用 apply trap 來攔截對 fetch 的呼叫。

  2. 請求日誌記錄:記錄請求的 url 和選項。
    回應處理:記錄回應狀態、狀態文字和 URL。
    克隆響應以確保正文可以被多次讀取。

  3. 錯誤處理:捕獲並記錄提取過程中遇到的任何錯誤。

  4. 使用代理:您可以透過將代理程式指派給window.fetch來全域替換fetch。

// Create a logging wrapper for fetch using Proxy
const fetchLogger = new Proxy(fetch, {
    apply: (target, thisArg, args) => {
        // Log the request details
        const [url, options] = args;
        console.log("Fetch Request:");
        console.log("URL:", url);
        console.log("Options:", options);

        // Call the original fetch function
        return Reflect.apply(target, thisArg, args)
            .then(response => {
                // Log response details
                console.log("Fetch Response:");
                console.log("Status:", response.status);
                console.log("Status Text:", response.statusText);
                console.log("URL:", response.url);

                // Return the response for further use
                return response.clone(); // Clone to allow response reuse
            })
            .catch(error => {
                // Log errors
                console.error("Fetch Error:", error);
                throw error; // Rethrow the error for caller handling
            });
    }
});

// Example usage of the logging fetch
fetchLogger("https://jsonplaceholder.typicode.com/posts", {
    method: "GET",
    headers: {
        "Content-Type": "application/json"
    }
})
    .then(response => response.json())
    .then(data => console.log("Data:", data))
    .catch(error => console.error("Error in fetch:", error));
登入後複製

將全域取得替換為日誌記錄

window.fetch = fetchLogger;
登入後複製

以上是帶有代理和獲取的日誌系統的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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