在控制台对象不存在的情况下防止错误消息

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在控制台对象不存在的情况下防止错误消息相关的知识,希望对你有一定的参考价值。

  1. // Prevent error messages in the cases where a console object doesn't exist
  2. if (!window.console || !console.firebug){
  3. var names = ["log", "debug", "info", "warn", "error", "assert", "dir", "dirxml","group", "groupEnd", "time", "timeEnd", "count", "trace", "profile", "profileEnd"];
  4. window.console = {};
  5. for (var i = 0; i < names.length; ++i) {
  6. window.console[names[i]] = function() {};
  7. }
  8. }

以上是关于在控制台对象不存在的情况下防止错误消息的主要内容,如果未能解决你的问题,请参考以下文章

Laravel - 防止错误显示在控制台中

如何在不使用 tkinter 打开控制台窗口的情况下运行 Python 脚本?

如何在不使用 Firebase 控制台的情况下向 iOS 设备发送 Firebase 云消息通知?

在以下情况下是不是存在死锁,有啥解决方案可以防止它?

如何防止在横向上自动调整 UINavigationBar 的大小

Spring Webapp 在没有控制台日志的情况下抛出 404 错误