Using Django view variables inside templates

混江龙づ霸主 提交于 2020-01-14 07:12:09

问题


this is a rather basic question (I'm new to Django) but I'm having trouble using a variable set in my view inside my template. If I initialize a string or list inside my view (i.e. h = "hello") and then attempt to call it inside a template:
{{ h }}
there is neither output nor errors. Similarly, if I try to use a variable inside my template that doesn't exist:

{{ asdfdsadf }}

there is again no error reported. Is this normal? And how can I use my variables within my templates. Thanks!


回答1:


In order to have access to a variable in a template, it needs to be in the the context used to render that template. My guess is you aren't passing a context dictionary to the template when you render it.

http://docs.djangoproject.com/en/dev/topics/http/shortcuts/#render-to-response

The "dictionary" referenced there is a dictionary that contains all the variables you want to have available in the context. For example:

return render_to_response('your_template.html', {'h': h})

As far as the "no error" error goes... That's the default setting for an invalid template variable. You can change that in the project's settings if you'd like.

http://docs.djangoproject.com/en/dev/ref/settings/#template-string-if-invalid




回答2:


You can also use

return render(request, 'your_template.html', {'h':h, 'var1':var1})

Refer to the latest manual on https://docs.djangoproject.com/es/1.9/topics/http/shortcuts/




回答3:


Yes! This is normal. Such errors in templates fail silently and this is expected in Django.

to render properly template use render_to_response('your_template.html', {'h':h}) (there is also a nasty shortcut render_to_response('your_template.html', locals()) if your context dictionary is very big)

here is some explanation with examples: http://www.djangobook.com/en/beta/chapter04/ (section 'How invalid variables are handled')



来源:https://stackoverflow.com/questions/3056263/using-django-view-variables-inside-templates

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!