python3.4中的 Template

  • 内容
  • ....
  • 相关

Template模块,可以用来制作web页面的模板,非常的方便。

Template属于string中的一个类,所以要使用的话要在头部引入:

from string import Template

模板替换变量采用的是$符号,而不是%,它的使用要遵循以下规则:

  • $$ 是需要规避,已经采用一个单独的 $代替($$相当于输出$,而不是变量)
  • $identifier 变量由一个占位符替换(key),key去匹配变量 “identifier”
  • ${identifier}相当于 $identifier. 它被用于当占位符后直接跟随一个不属于占位符的字符,列如 “${noun}ification”

Template中有两个重要的方法:substitute和safe_substitute,如下:

class string.Template(template)
The constructor takes a single argument which is the template string.

substitute(mapping, **kwds)
Performs the template substitution, returning a new string. mapping is any dictionary-like object with keys that match the placeholders in the template. Alternatively, you can provide keyword arguments, where the keywords are the placeholders. When both mapping and kwds are given and there are duplicates, the placeholders from kwds take precedence.

safe_substitute(mapping, **kwds)
Like substitute(), except that if placeholders are missing from mapping and kwds, instead of raising a KeyError exception, the original placeholder will appear in the resulting string intact. Also, unlike with substitute(), any other appearances of the $ will simply return $ instead of raising ValueError.

While other exceptions may still occur, this method is called “safe” because substitutions always tries to return a usable string instead of raising an exception. In another sense, safe_substitute() may be anything other than safe, since it will silently ignore malformed templates containing dangling delimiters, unmatched braces, or placeholders that are not valid Python identifiers.

测试代码–规则:

s1 = Template('$who likes $what')
print(s1.substitute(who='tim', what='kung pao'))

s2 = Template('${who}likes $what')
print(s2.substitute(who='tim', what='kung pao'))

s3 = Template('$$who likes $what')
print(s3.substitute(who='tim', what='kung pao'))

输出:

tim likes kung pao
timlikes kung pao
$who likes kung pao

测试代码–safe_substitute和substitute区别:

d = dict(who='java')
print(Template('$who need $100').safe_substitute(d))
print(Template('$who need $100').substitute(d))

输出:

java need $100
Traceback (most recent call last):

使用safe_substitute可以正常输出,而使用substitute会出错,需要把100改成100改成$100

substitute比较严格,必须每一个占位符都找到对应的变量,不然就会报错,而safe_substitute则会把未找到的$XXX直接输出

参考资料:https://docs.python.org/3.4/library/string.html#template-strings