2

我正在尝试学习 Rails,并以我的博客为借口。

现在,我正在玩转脚手架。我得到了 MVC 及其背后的想法,所以当我遇到以下错误时,我正要重新创建它。

如果我输入类似的内容

text
text
text

在帖子表单的“内容”标签中,它将所有文本显示为一个块。

text text text

我想我可以尝试做类似的事情

<p>text</p>
<p>text</p>
<p>text</p>

但是,它显示

<p>text</p><p>text</p><p>text</p>

我希望 Rails 做的是实际解析内容中的 html。我会怎么做才能让它发生?

这是我用来提交内容的新表单部分

<%= form_for(@post) do |f| %>
  <% if @post.errors.any? %>
    <div id="error_explanation">
      <h2><%= pluralize(@post.errors.count, "error") %> prohibited this post from being saved:</h2>

      <ul>
      <% @post.errors.full_messages.each do |msg| %>
        <li><%= msg %></li>
      <% end %>
      </ul>
    </div>
  <% end %>

  <div class="field">
    <%= f.label :name %><br />
    <%= f.text_field :name %>
  </div>
  <div class="field">
    <%= f.label :title %><br />
    <%= f.text_field :title %>
  </div>
  <div class="field">
    <%= f.label :content %><br />
    <%= f.text_area :content %>
  </div>
  <div class="actions">
    <%= f.submit %>
  </div>
<% end %>

这是整个帖子控制器

class PostsController < ApplicationController
  # GET /posts
  # GET /posts.json
  def index
    @posts = Post.paginate(page: params[:page])

    respond_to do |format|
      format.html # index.html.erb
      format.json { render json: @posts }
    end
  end

  # GET /posts/1
  # GET /posts/1.json
  def show
    @post = Post.find(params[:id])

    respond_to do |format|
      format.html # show.html.erb
      format.json { render json: @post }
    end
  end

  # GET /posts/new
  # GET /posts/new.json
  def new
    @post = Post.new

    respond_to do |format|
      format.html # new.html.erb
      format.json { render json: @post }
    end
  end

  # GET /posts/1/edit
  def edit
    @post = Post.find(params[:id])
  end

  # POST /posts
  # POST /posts.json
  def create
    @post = Post.new(params[:post])

    respond_to do |format|
      if @post.save
        format.html { redirect_to @post, notice: 'Post was successfully created.' }
        format.json { render json: @post, status: :created, location: @post }
      else
        format.html { render action: "new" }
        format.json { render json: @post.errors, status: :unprocessable_entity }
      end
    end
  end

  # PUT /posts/1
  # PUT /posts/1.json
  def update
    @post = Post.find(params[:id])

    respond_to do |format|
      if @post.update_attributes(params[:post])
        format.html { redirect_to @post, notice: 'Post was successfully updated.' }
        format.json { head :no_content }
      else
        format.html { render action: "edit" }
        format.json { render json: @post.errors, status: :unprocessable_entity }
      end
    end
  end

  # DELETE /posts/1
  # DELETE /posts/1.json
  def destroy
    @post = Post.find(params[:id])
    @post.destroy

    respond_to do |format|
      format.html { redirect_to posts_url }
      format.json { head :no_content }
    end
  end
end
4

2 回答 2

2

为了防止 XSS 攻击,Rails 默认会转义 html。如果您不希望您的 html 转义,则必须.html_safe在您不想转义的字符串上使用。在show.html.erb

<%= @post.content.html_safe %>

或者更好的方法是不要<p>在您的内容字段中输入 's 并用于simple_format将格式设置为段落,如下所示:

<%= simple_format(@post.content) %>

当然,您也可以将两者结合使用。例如,当您省略了段落标签,但在的内容中有链接时:

<%= simple_format(@post.content.html_safe) %>

请注意,您可以安全地.html_safe在您自己输入的内容上使用它,但不要在第三方输入的内容(如评论)上使用它,因为这会使您的网站受到 XSS 攻击。

于 2012-11-08T03:39:32.227 回答
0

Mischa 的回答让我陷入了搜索的困境,我还发现了这个宝石——https: //github.com/sophlenz/tinymce-rails

它将 TinyMCE,一个所见即所得的编辑器添加到 textarea

于 2012-11-08T03:58:18.390 回答