我正在将wtforms字段(http://wtforms.simplecodes.com/docs/0.6/fields.html)与<input>
标记(http://www.w3schools.com/tags/att_input_type.asp)进行比较。对于wtforms中的某些字段,<input type>
等价物很容易被猜到。但对于其他人,我真的不知道如何实施它们。
是否有任何示例网页可以尝试渲染wtform字段?或者是否有一些wtforms的模板集合,所以我可以自己尝试一下?
答案 0 :(得分:1)
只需查看来源即可轻松找到答案:
# ... snip ...
class SearchField(core.StringField):
"""
Represents an ``<input type="search">``.
"""
widget = widgets.SearchInput()
class TelField(core.StringField):
"""
Represents an ``<input type="tel">``.
"""
widget = widgets.TelInput()
class URLField(core.StringField):
"""
Represents an ``<input type="url">``.
"""
widget = widgets.URLInput()
# ... snip ...