我目前正在'request_path': request.get_full_path()
通过render_to_response
。我想知道这真的是 nessccary,因为我被告知它是 unnesscary 并且上下文处理器会处理这个问题,但是 {{ get_full_path }} 是空的。
请指教。
{{ request.get_full_path }}
在您的模板中尝试。
您需要添加默认情况下不存在的django.core.context_processors.request
模板上下文处理器设置,并使用. 像RequestContext
return render_to_response('my_template.html',
my_data_dictionary,
context_instance=RequestContext(request))
这将request
在您的模板中添加变量,然后您可以{{ request.get_full_path() }}
在模板中使用。