代理物件:fetchLogger 包裝了 fetch 函數。
它使用 apply trap 來攔截對 fetch 的呼叫。
請求日誌記錄:記錄請求的 url 和選項。
回應處理:記錄回應狀態、狀態文字和 URL。
克隆響應以確保正文可以被多次讀取。
錯誤處理:捕獲並記錄提取過程中遇到的任何錯誤。
使用代理:您可以透過將代理程式指派給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中文網其他相關文章!