用django显示换行符

时间:2018-04-26 15:24:56

标签: django django-templates escaping

我如何在django中显示换行符?
为例:
my_variable = 'hello world\r\n
我想在我的html页面中有 my_variable 的确切值。我不想要对换行符进行解释

2 个答案:

答案 0 :(得分:0)

你必须使用双重转义:

my_variable = 'Hello, World!\\r\\n'

答案 1 :(得分:0)

我使用 @Sergey Miletskiy 的答案的双重转义(\\ r \\ n)解决了这个问题,并在我的模板中添加了以下几行。

{% autoescape off %} {{ my_variable }} {% endautoescape %}