默认变量处理

当一个变量在模板内经常使用,而每次使用都需要给它设置default修饰器时,这将会非常不优雅。 你可以用{assign}函数来给变量赋一个默认值。


Example 21.2. 给变量赋默认值

  1. {* do this somewhere at the top of your template *}
  2. {assign var='title' value=$title|default:'no title'}
  3.  
  4. {* if $title was empty, it now contains the value "no title" when you use it *}
  5. {$title}
  6.  

参见 default修饰器和空变量的处理.

原文: https://www.smarty.net/docs/zh_CN/tips.default.var.handling.tpl