Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 models.py 文件,其中有一个文本字段
模型.py
class xyz(models.Models): abc=models.TextField()
我正在使用 html 表单来保存abc字段的数据。
问题是,如果我在表单中输入多行数据并尝试显示它,那么整个问题都会显示在一行中。
那么错误是什么?是模型还是什么?
提前致谢。
用户输入纯文本,然后您尝试将其显示为 HTML。这些是不同的格式。
有很多可能性,最简单的一种是让用户输入 HTML,然后一切都会按预期工作。
为此,请使用一些 HTML 编辑器,例如tinymce
其他解决方案是使用一些标记格式