プロキシ オブジェクト: fetchLogger はフェッチ関数をラップします。
適用トラップを使用してフェッチ呼び出しをインターセプトします。
リクエストのログ: リクエストの URL とオプションをログに記録します。
応答処理: 応答ステータス、ステータス テキスト、および URL をログに記録します。
応答のクローンを作成して、本文を複数回読み取れるようにします。
エラー処理: フェッチ中に発生したエラーをキャプチャしてログに記録します。
プロキシの使用: プロキシを window.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 中国語 Web サイトの他の関連記事を参照してください。