django_summernote 所写内容的标签已暴露,未应用
Posted
技术标签:
【中文标题】django_summernote 所写内容的标签已暴露,未应用【英文标题】:tags of content written by django_summernote is exposed, not applied 【发布时间】:2019-08-04 22:17:04 【问题描述】:我开始使用 Django 构建个人博客,并且只安装 django_summernote 作为编辑器。
但是,当我在 html 模板中获取文本时,主要文章的 html 标签被暴露,没有正确应用。如下所示。
Here is the main text.
Hellow World! First Post <h1><span style="font-family: Arial;">Hello,
World!</span></h1><p><span style="font-family: Arial;">This is my first
post.</span></p><p><br></p>
模板如下图。
<div id="middle_canvas">
Here is the main text. <br>
% for post in recent_posts %
post.title
post.text <br><br>
% endfor %
</div>
另外,Post 模型如下所示。
class Post(models.Model):
author = models.ForeignKey('auth.User', on_delete=models.CASCADE)
title = models.CharField(max_length=200)
text = models.TextField()
created_date = models.DateTimeField(
default=timezone.now)
published_date = models.DateTimeField(
blank=True, null=True)
def publish(self):
self.published_date = timezone.now()
self.save()
def __str__(self):
return self.title
我不知道去哪里检查。
【问题讨论】:
【参考方案1】:解决了我使用了像下面这样的安全过滤器。
post.title | safe
【讨论】:
以上是关于django_summernote 所写内容的标签已暴露,未应用的主要内容,如果未能解决你的问题,请参考以下文章