Django 文本区域小部件
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道如何在没有html编码的情况下保存它,但也许它足以让你在没有html编码的情况下显示
. Just put a |safe in the template after the variable name, example:
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:
http://docs.djangoproject.com/en/dev/ref/templates/builtins/?from=olddocs