我有一个带有TextField(“ notes”)的模型,我想使用变量向其中添加字符串,但用新行(\ n)分隔变量
aaa = "variable 1"
bbb = "variable 2"
ccc = "variable 3"
model.objects.create(id=id, notes=aaa + '\n' + bbb + '\n' + ccc)
但是,当我在模板中将字段呈现为{{object.notes}}
时,变量根本不会分开。
答案 0 :(得分:2)
<tab-component> This is a web-component with a render method that returns <slot>
now I use tab-component inside of another web-component inside of it's render method, using a native yes, input.
用纯文本表示换行符,但是您要询问模板层中实际\n
和p
HTML标签的自动创建。请参阅linebreaks和linebreaksbr的文档。
这两种方法都可以处理在模板中自动插入换行符或段落。
答案 1 :(得分:0)
尝试一下:
使用< br />
代替\n