无需通过render_to_response中的字典?
答案 0 :(得分:3)
Django将此内置到django.core.context_processors.debug
上下文处理器中。因此,您只需将其添加到TEMPLATE_CONTEXT_PROCESSORS
中的settings.py
设置即可。这会使用请求上下文将debug
上下文变量添加到所有视图,源代码如下所示:
def debug(request):
"Returns context variables helpful for debugging."
context_extras = {}
if settings.DEBUG and request.META.get('REMOTE_ADDR') in settings.INTERNAL_IPS:
context_extras['debug'] = True
from django.db import connection
context_extras['sql_queries'] = connection.queries
return context_extras