我刚开始使用django-piston
.
通常,在 Django 中,当我的视图抛出异常(并且我处于DEBUG=True
模式)时,我会得到一个非常好的、有用的带有堆栈跟踪的 500 错误页面。
但是当我的 Django-piston 启用视图抛出一个异常而不是一个漂亮的堆栈跟踪页面时,我得到一个简单的错误页面,只打印出异常消息。
例如...
Piston/0.2.3rc1 (Django 1.3) crash report:
Method signature does not match.
Signature should be: domain
Exception was: exceptions must be old-style classes or derived from BaseException, not NoneType
如何取回有用的 Django 堆栈跟踪页面?
谢谢。