我有一個問題想的,而不是僅僅1發送與請求上下文和{%如果%}工作不正常
觀點方法找出以下原因會呈現出「嗨」和1一個HTML頁面, 。
def index(request):
context = {
'test' : 1,
}
return render(request, 'index.html', context)
template html。渲染index.html將同時顯示'hi'和1.但是上下文中沒有用戶,那麼爲什麼if用戶會經歷?
{% if user %}
<h1>hi</h1>
{% endif %}
{% if test %}
<h1>{{ test }}</h1>
{% endif %}
感謝您的解釋。 :) – vandelay