用Flask写的网站插入代码后网站首页变成这样了
下面是我生成首页文章摘要的模板代码:
{% for post in page_posts %}
{{ post.title }}
{{ moment(post.timestamp).format('YYYY/MM/DD') }} {% for tag in post.tags.all() %} {{ tag.name }} {% endfor %} {{ post.comments.count() }} 评论 {% if current_user.is_administrator() %} 删除 编辑 {% endif %}
{% if post.body_html %} {{ post.body_html | safe | truncate(300) }} {% else %} {{ post.body | truncate(300) }} {% endif %}
{% endfor %}
摘要是纯文本的就没问题,可是一旦带了格式就不行了
之前描述不清楚,问题主要是插入使用CKEditor插入代码后,文章首页变成了图中那样了,文章摘要正常情况下字体应该是黑色的,插入代码后就变成了红色了,刚刚测试了一下,发现插入C语言C++的代码都会这样,其它语言的代码就没问题
{{ post.body_html | safe | truncate(300) }}
我想问题在这里, body_html 被truncate里变得不完整了!
这种问题你应该自己慢慢调试,因为你不知道你的代码在干嘛。 你可以先删剪一些代码 慢慢调试 成功了再走下一步