#10841 closed New feature (fixed)
Better 500 template for AJAX calls
Reported by: | Owned by: | Chris Beaven | |
---|---|---|---|
Component: | Core (Other) | Version: | dev |
Severity: | Normal | Keywords: | |
Cc: | Alexander Koshelev, glenn@…, ramusus@…, Justin Lilly, Erik Allik, lrekucki@…, kmike84@…, gregor@… | Triage Stage: | Design decision needed |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | yes |
Easy pickings: | no | UI/UX: | no |
Description
Currently it's quite hard to debug errors raised during ajax calls because of full 500 page being returned. This diff adds simple 500 page, it's pretty close to code for pasting to dpaste but with additional GET\POST\META\FILES\Settings lists and error summary moved to top. Simple check to self.request.is_ajax() is made to select template to use.
As for me, it's much easier to use tools like Firebug with this patch.
Attachments (6)
Change History (38)
by , 16 years ago
Attachment: | better_ajax_500.diff added |
---|
comment:1 by , 16 years ago
comment:2 by , 16 years ago
I don't think that DEBUG_PROPAGATE_EXCEPTIONS will help. I want django to handle exceptions and provide all info like GET\POST vars, just do it differently in ajax and non ajax cases. And I want to have normal 500 page for non ajax calls.
comment:3 by , 16 years ago
New patch, some cleanups.
I think some other templates should have ajax support, like comment's 400 page. But I am not completly sure about it, I use mptt comments which have ajax posting support and having ajax 400 page is very useful. But afaik django default comment system don't have direct ajax support. Any suggestions?
comment:4 by , 16 years ago
Why not make the AJAX 500 template be valid JSON? Then it'd be easy for clients to programatically figure out what went wrong.
comment:5 by , 16 years ago
Cc: | added |
---|
comment:6 by , 16 years ago
Making it JSON is a nice idea ( maybe with combination of checking "accept" headers ) but afaik when you have 500 error it usually means that something really wrong happend and it's outside the frontend\javascript app logic (syntax error for example, or integrity error), not to note that you need debug 500 page only during development time and adding special logic just for debug time looks like an overkill. So my main point was to make it easy to read by developer, as ( usually ) special logic at javascript side for 500 error page will not exist.
comment:7 by , 16 years ago
Cc: | added |
---|
This issue is a frustration for everyone doing AJAX with Django. I hope this gets fixed.
I don't think errors should be returned as a broken-apart JSON string. It would make testing with curl, etc. harder, and it doesn't seem useful for clients to try to figure out why the server crashed.
I could see a case for wrapping the entire templated error into JSON, but I think it's simpler for the client to just assume that 500 errors return plaintext, and do something like:
new Ajax.Request("/ajax.json", { on500: function(resp) { $("error").update(resp.responseText.replace("\n", "<br>")); } onSuccess: function(resp) { f(resp.responseJSON); } });
... to display errors in the page, even when the normal response is JSON.
comment:8 by , 16 years ago
Another point why JSON is bad idea - when you wrap string into JSON all non ascii characters get encoded, which makes it unreadable for normlal user.
comment:9 by , 15 years ago
Has patch: | set |
---|---|
Triage Stage: | Unreviewed → Design decision needed |
Version: | 1.0 → SVN |
Here's a new version which moves the AJAX test to the technical_500_response
and returns the correct mime type (I also tidied up the new text version of the template and refactored the html/text traceback generation).
by , 15 years ago
Attachment: | 10841.diff added |
---|
comment:10 by , 15 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
(i'm accepting as a reminder for me to raise the issue after 1.1 lands)
by , 15 years ago
Attachment: | 10841.2.diff added |
---|
comment:11 by , 15 years ago
Cc: | added |
---|
comment:12 by , 15 years ago
Cc: | added |
---|
comment:13 by , 15 years ago
Cc: | added; removed |
---|
comment:14 by , 14 years ago
Cc: | added |
---|
comment:15 by , 14 years ago
I think this ticket can be closed now as new versions of firebug has "HTML" tab for viewing ajax responses.
comment:16 by , 14 years ago
I'm sorry but I personally use Safari/Chrome more often for web development than Firefox, also to inspect AJAX responses.
Does that infer that only Firefox+Firebug are considered as acceptable for development?
comment:18 by , 14 years ago
Patch needs improvement: | set |
---|
I am pretty sure that this ticket will not make into Django(lol, it's been a year since first patch) and I have nothing against Chrome/Safari(I had no idea that it can debug AJAX calls to be honest). But now we need a better patch which will server normal html 500 pages to firebug and plain text to other browsers. :)
comment:19 by , 14 years ago
Yes, the ticket is a year old - but then, nobody has raised the issue on Django-developers to try and get the design issue resolved, either. Nothing ever gets added to trunk unless somebody makes it happen.
comment:20 by , 14 years ago
After looking at headers which firefox send I can seen no way to check for firebug, so we either need to check for firefox and enable full html listing only for it or limit it to text for every browser. Both solutions doesn't seem nice to me, so, any suggestions?
This ticket was discussed in django-developers, btw.
comment:21 by , 14 years ago
By default, failed AJAX requests should give plain-text errors, because very often they're not being viewed in a browser at all. Half of the benefit of the whole mechanism is that I can test it outside of the complexities of whatever HTML interface is using it, by assembling queries with curl. If that fails, it should give messages I can read without having to dump them to a file and load them in a browser (or squint painfully at in a pager, which is what I usually end up doing).
It's nice that some browser tools give a way to view past AJAX responses, but it doesn't change this issue at all.
comment:22 by , 14 years ago
I would love to see JSON in the response, instead of plain text or HTML.
This is what ASP.NET also does, and it works really nice in practice.
Some of the fields could be:
- errortype
- message
- stacktrace
The JavaScript developer can choose whether to show a message, or dump the stracktrace at the console.
Dumping a text/HTML message to the output makes it really hard to do something sane from the JavaScript side of things.
comment:23 by , 14 years ago
I've seen a very nice implementation of something similar to it from Google on their Google Vizualization tools.
Check this out
It's simliar to waht vdboor suggested.
comment:24 by , 14 years ago
Cc: | added |
---|
comment:25 by , 14 years ago
Cc: | added |
---|
comment:26 by , 14 years ago
Severity: | → Normal |
---|---|
Type: | → New feature |
comment:27 by , 13 years ago
Cc: | added |
---|---|
Easy pickings: | unset |
UI/UX: | unset |
by , 13 years ago
Attachment: | 10841.4.diff added |
---|
Patch updated to account for new 1.4 sensitive POST vars filtering + corresponding tests. Thanks Julien
comment:31 by , 6 years ago
Just for reference: I've revisited/improved the output format in https://code.djangoproject.com/ticket/30411.
comment:32 by , 6 years ago
With regard to curl see https://code.djangoproject.com/ticket/1458#comment:2.
Note that you can use DEBUG_PROPAGATE_EXCEPTIONS to get simple traceback.