ホームページ > ウェブフロントエンド > jsチュートリアル > プロキシとフェッチを備えたロギング システム

プロキシとフェッチを備えたロギング システム

Patricia Arquette
リリース: 2024-12-03 09:12:10
オリジナル
528 人が閲覧しました

Logging System with Proxy and Fetch

  1. プロキシ オブジェクト: fetchLogger はフェッチ関数をラップします。
    適用トラップを使用してフェッチ呼び出しをインターセプトします。

  2. リクエストのログ: リクエストの URL とオプションをログに記録します。
    応答処理: 応答ステータス、ステータス テキスト、および URL をログに記録します。
    応答のクローンを作成して、本文を複数回読み取れるようにします。

  3. エラー処理: フェッチ中に発生したエラーをキャプチャしてログに記録します。

  4. プロキシの使用: プロキシを 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 サイトの他の関連記事を参照してください。

ソース:dev.to
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート