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.
你好。在我的模板文件中,我得到了字段的值
{{product.description}}
它给了我br描述中的标签。我该如何替换它们?实际上,我已经将产品从 magento 迁移到了 django。
br
您可以使用 django 内置的模板标签“安全”:
{{product.description|safe}}
您可以使用StripTag过滤器
{{ value|striptags }}