Django 管理 :: HTML 输入
在 Django 的管理面板中:如何添加用户可以添加未转义 HTML 的表单字段?
In Django's admin panel: how do I add a form field that users can add unescaped HTML into?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用标准文本字段,数据以未转义的方式保存。但是,默认情况下,模板中输出的任何数据都会自动转义< /a>.您可以通过使用
安全
过滤器。Use a standard TextField, the data gets saved unescaped. However, by default any data that is outputted in a template is automatically escaped. You can circumvent this by either disable autoescaping (bad idea!) by using the
safe
filter.