我是 Jinja2 模板引擎的新手。有没有类似于 Zend Framework 中的视图助手的东西?我可以创建简单的函数并在所有模板文件中重用它们吗?
像这样的东西?
#somewhere in my python code:
def nice_demo_function(message):
""""return a simple message"""
return message
所以我可以使用它:
<!-- now in my template-file -->
{% nice_demo_function('yes, this works great!') %}