本文整理汇总了Python中template.Template.setTemplate方法的典型用法代码示例。如果您正苦于以下问题:Python Template.setTemplate方法的具体用法?Python Template.setTemplate怎么用?Python Template.setTemplate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类template.Template
的用法示例。
在下文中一共展示了Template.setTemplate方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: show
# 需要导入模块: from template import Template [as 别名]
# 或者: from template.Template import setTemplate [as 别名]
def show(self, http_handler, param, form=None):
template = Template('base.html')
template.setTemplate('CONTENT', 'wait.html')
template.setTemplate('INFO_BLOCK', 'test_dummy.html')
template.setData('META', '<meta http-equiv="Refresh" content="3; url=/test">')
self.answer(http_handler, template.show())
示例2: register
# 需要导入模块: from template import Template [as 别名]
# 或者: from template.Template import setTemplate [as 别名]
def register(self, http_handler, param, form=None):
test = http_handler.testSet.getByTid( http_handler.settings.get('test_name') )
if form:
try:
user_name = form['user_name'].value.decode("utf-8")
user_rank = form['user_rank'].value.decode("utf-8")
except:
user_name = u""
user_rank = u""
if test and user_name and user_rank:
test = test.getRandomSubTest(http_handler.settings.get('test_count', 0))
http_handler.initStorage(user_name, user_rank, test)
self.redirect(http_handler, "/test")
else:
template = Template('base.html')
template.setTemplate('INFO_BLOCK', 'test_info.html')
template.setData('TEST_TITLE', test.caption)
template.setTemplate('CONTENT', 'register.html')
self.answer(http_handler, template.show())