通过代码捕获Firefox/IE错误控制台的内容?
是否可以捕获 Firefox 或 IE javascript 错误控制台的内容?我正在考虑添加一项功能,当用户单击我网站上的“报告错误”链接时,它还会发送控制台的内容,以防其中存在任何有用的错误。这样我就不必告诉他们手动打开它并复制并复制它。把内容贴给我。
Is it possible to capture the contents of either the Firefox or IE javascript error console? I'm thinking adding a feature where when a user clicks the 'Report A Bug' link on my site, it also sends along the contents of the console, incase there are any useful errors in it. That way I don't have to tell them to manually open it and copy & paste the contents to me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以挂钩 window.onerror 事件并向您的服务器发送包含详细信息的请求。
请注意,它并不适用于所有浏览器,并且错误的详细信息会因浏览器而异。例如,IE 可能会返回“哦,非常有帮助”:“对象不支持属性或方法”,您会想知道哪个对象、什么属性?...;-)
you can hook into the window.onerror event and send a request to your server with the details.
Just be aware that it won't work on all browsers, and the details of the error will vary by browser. e.g. IE may return the oh so helpful: "Object does not support property or method" and you're left wondering which object, what property?... ;-)