处理瓶子的SimpleTemplate Engine模板中的未定义值

时间:2012-04-19 14:27:09

标签: python templates bottle

我该如何处理:

... value="{{thing['attr']}}" ...

作为''未定义的东西? 我试过了

... value="{{thing['attr'] if node else ''}}" ...

但它抱怨说,事情没有定义。

1 个答案:

答案 0 :(得分:3)

{{thing['attr'] if defined('thing') else ''}}