IE9 中的控制台未定义错误

Console is undefined error in IE9(IE9 中的控制台未定义错误)
本文介绍了IE9 中的控制台未定义错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个显示 SVG 图形的图形页面.我正在使用 Raphael 图形框架.该页面在 Firefox 中正确显示,此外,如果 F12 开发人员工具在 IE9 中设置为打开",则它可以正常工作.如果 F12 开发者模式关闭并且应用程序在清除浏览器缓存的情况下启动(模拟普通用户),则该地图显示 IE9 中的部分数据(它是一个节点链接图,它仅显示 12 个节点中的一个子节点).

I have a graphics page which shows SVG graphics. I am using Raphael graphics framework. The page displays properly in Firefox, Also if the F12 developer tools is set 'on' in IE9 it works fine. The map show partial data (its a node link diagram and it shows only one child node out of 12 nodes) in IE9 if the F12 developer mode is set off and application is started with browser cache cleared (simulating a general user).

更新:我保持​​调试器打开并显示错误控制台未定义".所以我认为这不是图形渲染问题,而且我没有明确使用控制台,也许思维导图js在内部使用它,但是如何再次摆脱这个问题?

Update: I kept the Debugger on and Shows me the error "Console is undefined". So I think its not a graphics rendering issue, and also I am not using the console explicitly, maybe the mindmap js is using it internally, but how to again get rid of this issue?

更新:我发现了问题并注释掉了 js 文件中的 console.log 条目.

Update: I found the issue and commented out the console.log entries from the js files.

谢谢.

推荐答案

可能您的代码或您正在调用的代码正在使用 console.log 或类似的东西.

Probably your code or the code you are calling is using console.log or something like it.

您可以在全局范围内添加此代码来为 IE(或任何不支持它的浏览器)创建一个虚拟包装器.在调用任何其他库之前,只需将以下代码放在某处:

You could add this code in the global scope to create a dummy wrapper for IE (or any browser that doesn't support it). Just put the following code somewhere before you call any other libraries:

if(!(window.console && console.log)) {
  console = {
    log: function(){},
    debug: function(){},
    info: function(){},
    warn: function(){},
    error: function(){}
  };
}

这篇关于IE9 中的控制台未定义错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)