Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何强制 ddt 显示堆栈跟踪?我只能看到执行查询的部分模板。但是没有生成查询的视图。我设置
'ENABLE_STACKTRACES' : True
在设置中,但这对我没有帮助。我有版本 0.9.4。
允许自己引用...我自己:
您可以通过将 debug_toolbar/panels/sql.py:197 更改为读取来修补 0.9.4 安装 params = map(escape, os.path.split(frame[0]) + frame[1:]) (和import os.path上面的某个地方)。 看起来这个问题已在12fdf7e ( render_stacktrace) 中修复。
您可以通过将 debug_toolbar/panels/sql.py:197 更改为读取来修补 0.9.4 安装
params = map(escape, os.path.split(frame[0]) + frame[1:])
(和import os.path上面的某个地方)。
import os.path
看起来这个问题已在12fdf7e ( render_stacktrace) 中修复。
render_stacktrace