Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Jade 中,我在表单中有 textarea。
form(action='save') textarea(name='description') input(type='submit')
描述保存到 mongodb。我用mongoosejs这个。
mongoosejs
description: String
用 渲染玉时description,我有:
description
p #{description}
用换行符显示描述的最佳方式是什么。
还有更多的方法。
第一种方式- 是更改内容并替换为<br />:
<br />
p !{escape(foo).replace(/\n/g, '<br/>')}
第二种方式- 您可以应用自定义 CSS,因此您不需要替换内容和中断\n
\n
<style> p { white-space: pre; } </style>