我的目标是在HTML页面中动态编写一些图像网址。网址存储在数据库中。
为此,我首先尝试在模板中渲染一个简单的varable。阅读文档和其他资源,应该分三步完成:
对于配置:在settings.py中
TEMPLATES = [
{
'OPTIONS': {
'debug': DEBUG,
'context_processors': [
…
'django.template.context_processors.request',
'django.template.context_processors.debug',
'django.template.context_processors.i18n',
'django.template.context_processors.media',
'django.template.context_processors.static',
'django.template.context_processors.tz',
'django.contrib.messages.context_processors.messages', ],
},
},
模板中的变量名称:在MyHTMLFile.html 中是foo
…
<td>MyLabel</td><td><p>{{ foo }}</p></td><td>-----------</td>
…
在view.py 中的,其中一行
myvar1 ="BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB"
context = {foo: myvar1,}
return render_to_response("MyHTMLFile.html", context, context_instance = RequestContext(request) )
return render(request, 'MyHTMLFile.html', {foo: myvar1})
return render_to_response("MyHTMLFile.html", context , context_instance=RequestContext(request) )
return render(request, 'MyHTMLFile.html', context)
html页面渲染得很好,但html表中没有数据。
你知道吗?我很想知道我误解了什么。关于versio,我正在使用: python:Python 2.7.13 django:1.10.5
谢谢
答案 0 :(得分:5)
context = {foo: myvar1,}
这应该为您提供NameError
,除非您有一个名为foo
的变量,在这种情况下它可能包含或不包含字符串foo
。简而言之,您没有将正确的数据发送到模板。它应该是
context = {'foo': myvar1,}
然后
return render_to_response("MyHTMLFile.html", context, context_instance = RequestContext(request) )
# Below this line code will not be executed.
return render(request, 'MyHTMLFile.html', {foo: myvar1})
return render_to_response("MyHTMLFile.html", context , context_instance=RequestContext(request) )
return render(request, 'MyHTMLFile.html', context)
请注意,return
关键字会从函数中返回。之后的代码不会被执行。
最后不推荐使用render_to_response。 render
是当前使用的函数。