每次用户编辑textarea条目时,Ckeditor ruby​​ gem都会在条目末尾添加“>”

时间:2019-02-12 17:15:41

标签: ruby-on-rails rubygems ckeditor

当用户每次编辑内容时,Ckeditor ruby​​ gem会在我的内容条目的末尾添加一个“>”。 以下是发生的视频:https://drive.google.com/file/d/16sus8LGxHBZLFs_ts5_SJJSwLfisJzom/view?usp=sharing

这是我的text_component模型的update_row控制器代码。 textarea输入被保存在内容列中。
  def update_row     @text_component = TextComponent.find(params.fetch(“ id_to_modify”))

@text_component.tab_id = params.fetch("tab_id")
@text_component.content = params.fetch("content")

if @text_component.valid?
  @text_component.save

  redirect_to("/guides/"+params.fetch("guide_id"), :notice => "Text component updated successfully.")
else
  @guide = Guide.find(params.fetch("guide_id"))
  render("guide_templates/show.html.erb")
end
end

回答:这是我edit_form视图中的工作表单代码:

  <form action="/update_text_component/<%= @text_component.id %>"  method="post">
  <!--input for guide_id -->
  <div class="form-group">

    <input type="hidden" id="guide_id" name="guide_id" class="form-control" value="<%= params.fetch("guide_id") %>">
  </div>
    <!-- input for tab_id -->
  <div class="form-group">
    <input type="hidden" id="tab_id" name="tab_id" class="form-control" value="<%= params.fetch("tab_id") %>">
  </div>

  <div class="form-group">
    <label for="content">
      Content
    </label>

    <textarea id="content" name="content" class="ckeditor" rows="10"><%= raw @text_component.content %></textarea>
  </div>

  <button class="btn btn-block btn-outline-secondary">
    Update text component
  </button>
</form>

1 个答案:

答案 0 :(得分:0)

  <form action="/update_text_component/<%= @text_component.id %>"  method="post">
  <!--input for guide_id -->
  <div class="form-group">

    <input type="hidden" id="guide_id" name="guide_id" class="form-control" value="<%= params.fetch("guide_id") %>">
  </div>
    <!-- input for tab_id -->
  <div class="form-group">
    <input type="hidden" id="tab_id" name="tab_id" class="form-control" value="<%= params.fetch("tab_id") %>">
  </div>

  <div class="form-group">
    <label for="content">
      Content
    </label>

    <textarea id="content" name="content" class="ckeditor" rows="10"><%= raw @text_component.content %></textarea>
  </div>

  <button class="btn btn-block btn-outline-secondary">
    Update text component
  </button>
</form>