Django无法读取变量

时间:2014-08-11 01:33:08

标签: python django model processors

我的django有问题 在我的views.py中我有这个

def home(request):
    template = "index.html"
    test = "hello"
    Settings = settings.objects.all()
    return render_to_response(template ,{"Settings" : settings}, context_instance=RequestContext(request))

在我的index.html中

{{test}}

但它不会返回任何东西 如果我写

,我的模型还有一个名为logo_img的字段
{{ Settings.logo_img }}

也没有任何想法?

1 个答案:

答案 0 :(得分:0)

使用“hello”呈现测试变量:

def home(request):
    template = "index.html"
    test = "hello"
    return render_to_response(template, {"test": test})

只要您的模板目录配置正确,并且找到了index.html,这应该可行。 我不确定您使用的变量“设置”是什么。分配后它没有被引用。