目的,为了让前端对后端传输的这种方式不转义
1.使用mark_safe()
from django.utils.safestring import mark_safe # 后端safe
2.使用safe过滤器
{{ value|safe }}