使用Ruby on Rails保留文本区域中的换行符

时间:2015-02-08 18:49:15

标签: ruby-on-rails ruby textarea

为了练习Ruby on Rails,我正在创建一个包含文本区域的博客(遵循Mackenzie Child的教程)。提交文本后,将删除所有换行符。我知道这个问题的变化已经被提出,但是尽管整整一天尝试,我仍无法复制任何结果。我对JQuery不是很熟悉。

是否有一组步骤可以保留换行符?

_form.html.erb

<div class="form">
    <%= form_for @post do |f| %>
        <%= f.label :title %><br>
        <%= f.text_field :title %><br>
        <br>
        <%= f.label :body %><br>
        <%= f.text_area :body %><br>
        <br>
        <%= f.submit %>
    <% end %>
</div>

posts_controller.rb

class PostsController < ApplicationController before_action :authenticate_user!, except: [:index, :show]

def index
    @posts = Post.all.order('created_at DESC')
end

def new
    @post = Post.new
end

def create
    @post = Post.new(post_params)

    @post.save
    redirect_to @post
end

def show
    @post = Post.find(params[:id])
end

def edit
    @post = Post.find(params[:id])
end

def update
    @post = Post.find(params[:id])

    if @post.update(params[:post].permit(:title, :body))
        redirect_to @post
    else
        render 'edit'
    end
end

def destroy
    @post = Post.find(params[:id])
    @post.destroy

    redirect_to posts_path
end

private

    def post_params
        params.require(:post).permit(:title, :body)
    end
end

2 个答案:

答案 0 :(得分:54)

实际上保留了换行符(如\r\n),您只是在索引/展示视图中看不到它们。

在这些视图中,请在post.body字段上调用simple_format,将\n替换为<br> s(HTML换行符):

simple_format(post.body)

来自docs:

simple_format(text, html_options = {}, options = {}) public

Returns text transformed into HTML using simple formatting rules.
Two or more consecutive newlines(\n\n) are considered as a paragraph and wrapped 
in <p> tags. One newline (\n) is considered as a linebreak and a <br /> tag is 
appended. This method does not remove the newlines from the text.

答案 1 :(得分:2)

一种更简单(我敢说更好)的处理方法是将此CSS样式应用于您用于在其中显示用户输入的段落或类似HTML元素。

white-space: pre-wrap;

一个优点是,这将像simple_format一样持久地保留换行符,而无需添加适用的额外格式,例如将两个连续的换行符转换为段落元素,或自动将换行符添加到内容的末尾。只是在类似的项目中从使用simple_format切换到了此项目。更加可预测。