本文整理汇总了Python中pyramid_simpleform.Form.render方法的典型用法代码示例。如果您正苦于以下问题:Python Form.render方法的具体用法?Python Form.render怎么用?Python Form.render使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pyramid_simpleform.Form
的用法示例。
在下文中一共展示了Form.render方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_render_with_htmlfill
# 需要导入模块: from pyramid_simpleform import Form [as 别名]
# 或者: from pyramid_simpleform.Form import render [as 别名]
def test_render_with_htmlfill(self):
from pyramid_simpleform import Form
request = testing.DummyRequest()
request.POST["name"] = "test"
request.method = "POST"
settings = {}
settings["mako.directories"] = "pyramid_simpleform:templates"
config = Configurator(settings=settings)
request.registry = config.registry
form = Form(request, SimpleFESchema, defaults={"name": "foo"})
result = form.render("test_form.mako", htmlfill=True)
self.assert_('<input type="text" name="name" size="20" value="foo">' in result)
示例2: test_render_without_htmlfill
# 需要导入模块: from pyramid_simpleform import Form [as 别名]
# 或者: from pyramid_simpleform.Form import render [as 别名]
def test_render_without_htmlfill(self):
from pyramid_simpleform import Form
request = testing.DummyRequest()
request.POST["name"] = "test"
request.method = "POST"
settings = {}
settings["mako.directories"] = "pyramid_simpleform:templates"
config = testing.setUp(settings=settings)
config.include("pyramid_mako")
request.registry = config.registry
form = Form(request, SimpleFESchema)
result = form.render("test_form.mako", htmlfill=False)
self.assertTrue('<input type="text" name="name" size="20">' in result)
示例3: test_render_without_htmlfill
# 需要导入模块: from pyramid_simpleform import Form [as 别名]
# 或者: from pyramid_simpleform.Form import render [as 别名]
def test_render_without_htmlfill(self):
from pyramid_simpleform import Form
request = testing.DummyRequest()
request.POST['name'] = 'test'
request.method = "POST"
settings = {}
settings['mako.directories'] = 'pyramid_simpleform:templates'
config = Configurator(settings=settings)
request.registry = config.registry
form = Form(request, SimpleFESchema)
result = form.render("test_form.mako", htmlfill=False)
self.assert_('<input type="text" name="name" size="20">'
in result)
示例4: test_render_with_htmlfill
# 需要导入模块: from pyramid_simpleform import Form [as 别名]
# 或者: from pyramid_simpleform.Form import render [as 别名]
def test_render_with_htmlfill(self):
from pyramid_simpleform import Form
request = testing.DummyRequest()
request.POST['name'] = 'test'
request.method = "POST"
settings = {}
settings['mako.directories'] = 'pyramid_simpleform:templates'
config = testing.setUp(settings=settings)
config.include('pyramid_mako')
request.registry = config.registry
form = Form(request, SimpleFESchema, defaults={'name': 'foo'})
result = form.render("test_form.mako", htmlfill=True)
self.assert_('<input type="text" name="name" size="20" value="foo">'
in result)