My project which contains a lot of pages with forms. This is a backend of banking CRM system, so any error during working process is to be captured and investigated. On the server side we have enhanced java exceptions system, but if error occurs on client side - javascript the only info we now get is an js-error window in IE or sometimes a screenshot of page made by advanced user.
Javascript code contains both Jquery-powered UI extensions and hard-coded inline event handlers and functions.
So I am asking whether any approach for capturing js-errors of any kind could be used? some additional library or something that could give me a stacktrace like firebug in Mozilla or web-console in Chrome?
Client-side issues are commonly caused by JavaScript errors. JavaScript errors can be a script or policy that prevents a form from loading correctly, a syntax error within a client-based script, or a reference to a non-existent element. To debug client-side errors, a web development toolbar is required.
Look into window.onerror
. If you want to capture any errors, and report them to the server, then you could try an AJAX request, perhaps.
window.onerror = function(errorMessage, errorUrl, errorLine) { jQuery.ajax({ type: 'POST', url: 'jserror.jsf', data: { msg: errorMessage, url: errorUrl, line: errorLine }, success: function() { if (console && console.log) { console.log('JS error report successful.'); } }, error: function() { if (console && console.error) { console.error('JS error report submission failed!'); } } }); // Prevent firing of default error handler. return true; }
Disclaimer: I'm CEO and creator of Sentry, an open source and paid service which does crash reporting for many languages, including Javascript.
It can be pretty challenging to capture frontend exceptions. Technology has gotten better (browser JS engines), but there's still a lot of limitations.
window.onerror
for various reasons (mostly because browsers historically give bad information here). What we do in the raven.js client (which is based on TraceKit) is patch a number of functions to wrap them in try/catch statements. For example, window.setTimeout
. With this we're able to install error handlers that will generate full stacktraces in most browsers.Some things you should be aware of on the server:
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With