如果有人输入一个短语,例如:
I see you driving
round town with the girl I love,
and I’m like: haiku.
(每行之间没有空行,但文本写在三个单独的行上)到网页上的文本框中,然后按下一个按钮,然后通过 存储在数据库中Django
,该字符串被读回并打印在一个页面,我怎样才能让它在 HTML 页面上打印,而换行符仍在文本中?
因此,不要将其打印为:
I see you driving round town with the girl I love, and I’m like: haiku.
它会打印为:
I see you driving
round town with the girl I love,
and I’m like: haiku.
我知道如果我使用: (textarea)soAndSo.body(/textarea)
,这会保留用户最初键入文件时文件中的换行符。我怎样才能得到同样的效果,但不必使用textarea
盒子?