gpt4 book ai didi

javascript - 如何扩展可以接受 args 的 console.log

转载 作者:行者123 更新时间:2023-12-04 11:28:57 24 4
gpt4 key购买 nike

我一直在努力扩展 console.log做一个多彩的保留堆栈跟踪 至于它在哪里被调用。我尝试了一些解决方案,但最终达到了这一点:

export const colorizedLog = (
text: string,
status: keyof typeof ColorStatus = "dark",
...args: any
) =>
console.log.bind(
console,
`%c ${text}`,
`font-weight:bold; color: ${ColorStatus[status]}`,
...args
);
有了这个小 binding ,我们将能够保留堆栈跟踪,但这里的问题是我们必须将它与烦人的额外 () 一起使用最后,因为返回值是函数本身,它是 bind 的结果:
 colorizedLog(
"Title:",
"info",
"This is a working example")();
我读过的其他主要资源如下:
  • Extending console.log
  • Macro using babel- kent.c dodds
  • Webpack Define plugin

  • const colorizedLog = (text, color= "#40a7e3", ...args) =>
    console.log.bind(
    console,
    `%c ${text}`,
    `font-weight:bold; color:${color}`,
    ...args
    );
    colorizedLog("Title:", "#40a7e3", "This is a working example")();

    更新:堆栈跟踪
    使用AppVersion.ts
    enter image description here
    应用程序.vue
    enter image description here
    Chrome 控制台
    enter image description here

    最佳答案

    您可以立即调用它:

    const colorizedLog = (text, color= "#40a7e3", ...args) =>
    console.log.bind(
    console,
    `%c ${text}`,
    `font-weight:bold; color:${color}`,
    ...args
    )();

    colorizedLog("Title:", "#40a7e3", "This is a working example");

    关于javascript - 如何扩展可以接受 args 的 console.log,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66182606/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com