An if
statement evaluates a variable and executes a block of code if the value is true.
The elif
keyword says "if the previous conditions were not true, then try this condition".
{% if greeting == 1 %}
<h1>Hello</h1>
{% elif greeting == 2 %}
<h1>Welcome</h1>
{% endif %}
Run Example »
The else
keyword catches anything which isn't caught by the preceding conditions.
{% if greeting == 1 %}
<h1>Hello</h1>
{% elif greeting == 2 %}
<h1>Welcome</h1>
{% else %}
<h1>Goodbye</h1>
{% endif %}
Run Example »
The above examples uses the ==
operator, which is used to check if a variable is equal to a value, but there are many other operators you can use, or you can even drop the operator if you just want to check if a variable is not empty:
Is equal to.
Is not equal to.
Is less than.
Is less than, or equal to.
Is greater than.
Is greater than, or equal to.
To check if more than one condition is true.
{% if greeting == 1 and day == "Friday" %}
<h1>Hello Weekend!</h1>
{% endif %}
Run Example »
To check if one of the conditions is true.
Combine and
and or
.
Parentheses are not allowed in if
statements in Django, so when you combine and
and or
operators, it is important to know that parentheses are added for and
but not for or
.
Meaning that the above example is read by the interpreter like this:
{% if (greeting == 1 and day == "Friday") or greeting == 5 %}
To check if a certain item is present in an object.
{% if 'Banana' in fruits %}
<h1>Hello</h1>
{% else %}
<h1>Goodbye</h1>
{% endif %}
Run Example »
To check if a certain item is not present in an object.
{% if 'Banana' not in fruits %}
<h1>Hello</h1>
{% else %}
<h1>Goodbye</h1>
{% endif %}
Run Example »
Check if two objects are the same.
This operator is different from the ==
operator, because the ==
operator checks the values of two objects, but the is
operator checks the identity of two objects.
In the view we have two objects, x
and y
, with the same values:
views.py
:
from django.http import HttpResponse
from django.template import loader
def testing(request):
template = loader.get_template('template.html')
context = {
'x': ['Apple', 'Banana', 'Cherry'],
'y': ['Apple', 'Banana', 'Cherry'],
}
return HttpResponse(template.render(context, request))
The two objects have the same value, but is it the same object?
Let us try the same example with the ==
operator instead:
How can two objects be the same? Well, if you have two objects that points to the same object, then the is
operator evaluates to true:
We will demonstrate this by using the {% with %}
tag, which allows us to create variables in the template:
{% with var1=x var2=x %}
{% if var1 is var2 %}
<h1>YES</h1>
{% else %}
<h1>NO</h1>
{% endif %}
{% endwith %}
Run Example »
To check if two objects are not the same.
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!