我正在将一个 Django 项目变成一个多语言站点。为此,我正在尝试采用countries-for-django
( github ) 包。
在其中一个模板标签中,代码试图读取会话变量django_country
(取自此处),但 Django 1.5 会request
从上下文中读取变量。
Exception Type: AttributeError
Exception Value: 'NoneType' object has no attribute 'session'
模板标签中的代码如下(从第一篇文章开始,代码已经扩展):
class GetCurrentCountryNode(Node):
def __init__(self, variable):
self.variable = variable
def get_current_country(self, context):
from django.template import Context
return context.get('request').session.get('django_country')
def render(self, context):
context[self.variable] = self.get_current_country(context)
return ''
...
@register.tag("get_current_country")
def do_get_current_country(parser, token):
args = token.contents.split()
if len(args) != 3 or args[1] != 'as':
raise TemplateSyntaxError("'get_current_country' requires 'as variable' (got %r)" % args)
return GetCurrentCountryNode(args[2])
当我打印context
变量时,打印输出不包含任何request
变量。但是,我可以通过 看到Django Toolbar
该变量是存在的。
Django 1.5 读取上下文变量的方式是否发生了变化? 我在文档中找不到任何内容。
为完整性添加了 Views.py 和模板。
视图.py
...
class StartView(FormView):
form_class = StartForm
template_name = 'home.html'
def form_valid(self, form):
self.request.session['address'] = form.cleaned_data['address']
return HttpResponseRedirect(reverse_lazy('new'))
...
主页.html
{% load countries %}
{% get_current_country as country %}
{% get_available_countries as COUNTRIES %}
<head>
...