-
Notifications
You must be signed in to change notification settings - Fork 2
/
tester-template.html
63 lines (52 loc) · 2.08 KB
/
tester-template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
## ==============================================================================
## filter 过滤器标签
## http://jinja.pocoo.org/docs/2.10/templates/#list-of-builtin-tests
## ==============================================================================
<!--
odd(object):是否是奇数。
even(object):是否是偶数。
eq(a,b ) 别名: ==, equalto
ge(a,b ) 别名: >=
gt(a,b ) 别名: >, greaterthan
in(值,seq )检查值是否为seq。
le(a,b )别名: <=
lt(a,b )别名: <, lessthan
ne(a,b )别名: !=
sameas: 检查对象是否指向与另一个对象相同的内存地址:
callable(object):是否可调用。
iterable: 检查是否可以迭代对象。
mapping: 如果对象是映射(dict等),则返回true。
sequence: 如果变量是序列,则返回true。序列是可迭代的变量。
defined(object):是否已经被定义了。
undefined: 如同defined()但反过来想。
none: 如果变量为none,则返回true。
number: 如果变量是数字,则返回true。
string: 如果对象是字符串,则返回true。
divisibleby(值,num )检查变量是否可以被数字整除。
lower: 如果变量是小写的,则返回true。
upper: 如果变量是大写的,则返回true。
-->
## defined 判断变量定义
## -------------------------------------------------------------------------------
{% if variable is defined %}
value of variable: {{ variable }}
{% else %}
variable is not defined
{% endif %}
## 判断 user的属性是否是单例 false 对象
## -------------------------------------------------------------------------------
{% if user.attribute is sameas false %}
the user attribute really is the `False` singleton
{% endif %}
## 判断 user的属性是否是单例 false 对象
## -------------------------------------------------------------------------------
{% if 22 is prime %}
是否为素数:yes
{% else %}
是否为素数:no
{% endif %}
{% if 23 is prime %}
是否为素数:yes
{% else %}
是否为素数:no
{% endif %}