本文整理汇总了Python中jinja2.Template.strip方法的典型用法代码示例。如果您正苦于以下问题:Python Template.strip方法的具体用法?Python Template.strip怎么用?Python Template.strip使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类jinja2.Template
的用法示例。
在下文中一共展示了Template.strip方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __call__
# 需要导入模块: from jinja2 import Template [as 别名]
# 或者: from jinja2.Template import strip [as 别名]
def __call__(self, **kwargs):
"""
Generate the HTML code of the current widget. Keyword arguments are
used to format the generated HTML.
>>> a = DemoWidget('hello.world', '{name}')
>>> a(name='demo')
'<input name="demo" ng-model="hello.world"/>
"""
for modifier in self.modifiers:
if hasattr(modifier, 'attributes'):
self.html_attributes.update(modifier.attributes)
template = Template(self.html_template).render(widget=self)
return HTMLString(template.strip().format(**kwargs))