如何捕获 javascript 异常/错误? (将它们记录到服务器上)

发布于 2024-07-18 08:59:42 字数 477 浏览 11 评论 0原文

复制:


我如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笑着哭最痛 2024-07-25 08:59:42

我在所有项目中都使用此函数:

window.onerror = function(m,u,l){
    jQuery.post("ajax/js_error_log.php",
        { msg: m,
          url: u,
         line: l,
       window: window.location.href });
    return true};

确保它是浏览器接收的第一个 javascript,或者至少在任何可能导致错误的代码之前。 当然需要 jQuery,但如果您愿意,您可以用纯 JavaScript 编写 ajax 函数。

请注意:如果您有语法错误,这对您没有帮助。 如果出现语法错误,所有 javascript 都会立即终止。

I use this function in all my projects:

window.onerror = function(m,u,l){
    jQuery.post("ajax/js_error_log.php",
        { msg: m,
          url: u,
         line: l,
       window: window.location.href });
    return true};

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文