为了能够访问模板中的变量,它必须位于用于渲染该模板的上下文中。我的猜测是,渲染模板时不会将上下文字典传递给模板。
http://docs.djangoproject.com/en/dev/topics/http/shortcuts/#render-to-
response
引用的“词典”中有一个词典,其中包含您要在上下文中使用的所有变量。例如:
return render_to_response('your_template.html', {'h': h})
就“没有错误”错误而言…这是无效模板变量的默认设置。您可以根据需要在项目的设置中进行更改。
http://docs.djangoproject.com/en/dev/ref/settings/#template-string-if-
invalid
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)