如何捕获 javascript 异常/错误? (将它们记录到服务器上)
复制:
我如何在 javascript 中记录错误? 我无法将每一行 javascript 都包装在 try catch 块中。
我谈论的是错误,例如在 IE 中,会显示错误页面消息,并导致错误的行和字符。 如果我能弄清楚如何在客户端捕获此错误,我可以使用 ajax 调用在服务器上记录错误。
Duplicate:
How would I go about logging errors in javascript? I can't wrap every line of javascript in try catch block.
I talking about the errors that for example in IE, would show an Error On page message and have the line and char the caused the error. If I can just figure out how to catch this error on the client side, I can just log the error on the server using an ajax call.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在所有项目中都使用此函数:
确保它是浏览器接收的第一个 javascript,或者至少在任何可能导致错误的代码之前。 当然需要 jQuery,但如果您愿意,您可以用纯 JavaScript 编写 ajax 函数。
请注意:如果您有语法错误,这对您没有帮助。 如果出现语法错误,所有 javascript 都会立即终止。
I use this function in all my projects:
Make sure it is the very first javascript the browser receives or at least precedes any potentially error-causing code. Requires jQuery of course, but you could code ajax functions in pure javascript if you wanted to.
Please note: this will not help you if you have a syntax error. All javascript instantly dies if there is a syntax error.