反斜杠n(\ n)不适用于显示页面

时间:2015-11-26 17:54:18

标签: ruby-on-rails ruby-on-rails-4

反斜杠n(\ n)不能用于打印

创建帖子:

create post

呼叫帖子(index.html.erb):

enter image description here

index.html.erb:

<%= section.short_content %>

create.html.erb:

<%= f.text_area :short_content ,:class=>'form-control',:placeholder=>'ShortContent',:rows=>10%>

1 个答案:

答案 0 :(得分:1)

您应该使用simple_format格式化输出。

<%= simple_format(section.short_content) %>