将换行符添加到字符串,然后呈现换行符

时间:2019-02-20 06:17:22

标签: django

我正在尝试将换行符构建为字符串,然后使用换行符将该字符串呈现在模板中。我将以下字符串保存到模型字段:

usercart.other_tax_regnum = "State tax reg number" + "/n" + "Second State tax reg number"  
usercart.save()

然后,在我看来,我渲染了场地

 {{ usercart.other_tax_regnum|linebreaks }}

这不是呈现换行符,而是呈现的内容:

State tax reg number/nSecond State tax reg number

关于我该如何做的任何想法?

谢谢!

1 个答案:

答案 0 :(得分:1)

您犯了一个小错误:

右:

\n

错误:

/n

还有其他方法:

Take a look here