模型:
Field('text1', type='text', length=1000, notnull=True)
功能:
def textinput():
f=SQLFORM(db.example, fields=['text1'])
if f.accepts(request.vars, session):
return dict(form=f)
我希望能够以适当的行距/格式显示“text1”字段。如果用户要在表单中按 [enter] 键以开始新行或整个新段落,我希望这反映在视图中。
例如,如果用户在 SQLFORM 中输入以下内容:
This is a paragraph. Blah blah blah blah blah blah blah.
Blah blah blah blah blah blah blah blah blah.
Blah blah blah blah.
This is another paragraph. Blah blah blah blah blah.
Blah blah blah blah blah.
我希望它在视图中完全像那样出现,而不是把它全部塞满而没有间距。我该怎么做呢?我正在考虑使用 .replace 方法并用换行符替换所有 [enter] 击键,但我不知道该怎么做。我已经在 Google 上搜索了所有内容,但找不到我的确切问题。
任何帮助将不胜感激。谢谢。