在控制台对象不存在的情况下防止错误消息
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在控制台对象不存在的情况下防止错误消息相关的知识,希望对你有一定的参考价值。
// Prevent error messages in the cases where a console object doesn't exist if (!window.console || !console.firebug){ var names = ["log", "debug", "info", "warn", "error", "assert", "dir", "dirxml","group", "groupEnd", "time", "timeEnd", "count", "trace", "profile", "profileEnd"]; window.console = {}; for (var i = 0; i < names.length; ++i) { window.console[names[i]] = function() {}; } }
以上是关于在控制台对象不存在的情况下防止错误消息的主要内容,如果未能解决你的问题,请参考以下文章
如何在不使用 tkinter 打开控制台窗口的情况下运行 Python 脚本?
如何在不使用 Firebase 控制台的情况下向 iOS 设备发送 Firebase 云消息通知?