当前位置: 首页>>代码示例>>Python>>正文


Python Template.show方法代码示例

本文整理汇总了Python中template.Template.show方法的典型用法代码示例。如果您正苦于以下问题:Python Template.show方法的具体用法?Python Template.show怎么用?Python Template.show使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在template.Template的用法示例。


在下文中一共展示了Template.show方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: show

# 需要导入模块: from template import Template [as 别名]
# 或者: from template.Template import show [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())
开发者ID:Letractively,项目名称:right-test,代码行数:9,代码来源:interface.py

示例2: register

# 需要导入模块: from template import Template [as 别名]
# 或者: from template.Template import show [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())
开发者ID:Letractively,项目名称:right-test,代码行数:24,代码来源:interface.py


注:本文中的template.Template.show方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。