如何省略 上的结束斜杠?使用 WTForms 的元素?

发布于 2024-12-06 16:39:15 字数 371 浏览 0 评论 0原文

我注意到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小情绪 2024-12-13 16:39:15

使用此版本之后的任何修订版本(或简单地下载提示) - 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文