1

我将 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 的模板集合,所以我可以自己尝试?

4

1 回答 1

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 ...
于 2013-01-28T17:13:38.573 回答