如何省略 上的结束斜杠?使用 WTForms 的元素?
我注意到 WTForms(和 Flask-WTF)输出带有结束斜杠的 元素,如下所示:
我的文档是 HTML5,因此不需要 XHTML 类型的闭包。我如何使 WTForms 输出这样的输入标签?
我一直在翻阅文档和源代码,但没有找到任何线索。当然,我可以创建一系列自定义小部件,但这对于如此简单的东西来说似乎有点过分了。有更简单的方法吗?
或者这可能是我遗漏的 Jinja2 配置问题?
I've been noticing that WTForms (and Flask-WTF) output <input>
elements with a closing slash like so:
<input name="text" type="text" value="" />
My documents are HTML5 and therefore need no XHTML-type closure. How would I make WTForms output the input tag as such?
<input name="text" type="text" value="">
I've been tearing through the docs and the source code an am finding no clues. I could create a series of custom widgets, of course, but that seems a bit excessive for something so simple. Is there an easier way?
Or is this perhaps a Jinja2 configuration issue that I'm missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用此版本之后的任何修订版本(或简单地下载提示) - WTForms 正在转向使用 HTML5 方式生成表单元素并添加一些新的小部件(我相信)。请参阅此帖子和此了解更多信息。
* 还有WTForms 扩展,如果添加了 XHTML你决定你需要它。
Use any revision past this one (or simply download tip) - WTForms is moving to the HTML5 way of generating form elements and adding some new widgets too (I believe). See this thread and this one for a bit more information.
* There is also an extension for WTForms that adds the XHTML back in, if you decide you need it.