从我的服务器返回的 JSON 响应包含一个长字符串(消息正文或多行注释)。
典型的 message.body 可能如下所示:
"Hi!\r\n\r\nHow's life? Everything is well with me\r\n\r\nSincerely,\r\n\r\nAustin\r\n"
现在使用车把,我像这样嵌入
<p>{{body}}</p>
但是,这会在 html 中呈现为:
<p>"Hi!
How's life? Everything is well with me
Sincerely,
Austin"</p>
我怎样才能让它在它自己的 html 段落 [p] 标记中呈现每一行?在rails中,我会用这样的东西(在haml中)
- note.body.each_line do |x|
%p= x