如果您想知道如何將預設的 console.log() 擴展為即:用當前日期時間作為前綴:
// Store the default log method: const _log = console.log; // Override: console.log = (...args) => { const prefix = `[${new Date().toLocaleString()}]`; if (typeof args[0] === "string") args[0] = `${prefix} ${args[0]}` else args.unshift(prefix); _log(...args); }; // Examples: console.log("Test"); // [Date Time] Test console.log({a: "b"}); // [Date Time] {a: "b"} console.log("Hello, %s!", "World"); // [Date Time] Hello, World! console.log("Number: %i", 42); // [Date Time] Number: 42 console.log("%cStylized text", 'color: red'); // [Date Time] Stylized text
寫 console.log 很乏味,因此我們不要覆寫預設行為,而是建立一個在內部使用 console.log 的 log() 函數:
const log = (...args) => { const prefix = `[${new Date().toLocaleString()}]`; if (typeof args[0] === "string") args[0] = `${prefix} ${args[0]}` else args.unshift(prefix); console.log(...args); }; // Examples: log("Test"); // [Date Time] Test log({a: "b"}); // [Date Time] {a: "b"} log("Hello, %s!", "World"); // [Date Time] Hello, World! log("Number: %i", 42); // [Date Time] Number: 42 log("%cStylized text", 'color: red'); // [Date Time] Stylized text
享受日誌記錄的樂趣,不要忘記斷點;)
以上是自訂 JavaScript 的 console.log的詳細內容。更多資訊請關注PHP中文網其他相關文章!