Django 文本区域小部件

发布于 2024-09-28 10:54:41 字数 193 浏览 3 评论 0原文

在 django admin 中我使用 textarea 小部件。

当我保存数据时,它会保存在

标记内。

我不想要这个 - 任何解决方案,我只想取出数据而不将其包装在

中。

有什么建议吗?

In django admin I am using the textarea widget.

When I save data, it is saved inside a <p></p> tag.

I dont want this - any solutions, I just want to get the data out without being wrapped in a <p>.

Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

猫烠⑼条掵仅有一顆心 2024-10-05 10:54:41

我不知道如何在没有html编码的情况下保存它,但也许它足以让你在没有html编码的情况下显示

. Just put a |safe in the template after the variable name, example:

{{ variable|safe }}

http://docs.djangoproject.com/en/dev/ ref/templates/builtins/?from=olddocs

I don't know how to save it without html coding, but maybe it is enough to you to display without that

. Just put a |safe in the template after the variable name, example:

{{ variable|safe }}

http://docs.djangoproject.com/en/dev/ref/templates/builtins/?from=olddocs

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