功能介绍:项目开发中,我们会用到很多console.log
用于代码调试,但是在上线后我们需要把它们一条条注释掉,这么太麻烦了!大家可以把下面的代码复制到js中直接屏蔽掉所有的console.log
输出!
具体代码如下:
var logDebug = false; console.log = (function (oriLogFunc) { return function () { if (logDebug) { oriLogFunc.apply(this, arguments); } } })(console.log);
ps:如果是输出的大对象,可能会影响页面的整体性能~
vue项目打包后不想让用户看到console.log(关闭console.log)
vuejs如何console.log打印div中的内容并去除标签
vue开发中谷歌浏览器console.log无法打印内容怎么解决
标签: console.log, js屏蔽
上面是“js屏蔽所有console.log打印”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_4135.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!