Ruby Params.require.permit进入""

时间:2017-04-06 01:40:47

标签: ruby-on-rails ruby ruby-on-rails-5

嘿我想弄清楚为什么当我试图创建一篇文章时,我的数据库仍在创建一篇文章,即使:标题和:描述正在进入""。在我的前端的意思我可以点击创建按钮,尽管每个字段都是空的,如在"",文章仍然被创建,这就是我不想要发生的事情。如果:title param或:description param ==""我想渲染一个错误,而不是像现在这样创建一篇文章。

New.hmtl.erb

<style>
  body {
    background-color: white !important;;
  }
</style>
<h1>Create an Article</h1>

<% if @article.errors.any? %>
  <h2>The following errors have kept the article from being created</h2>
    <ul>
    <% @article.errors.full_messages.each do |msg| %>
    <li><%= msg %></li>
    <%end %>
  </ul>
<%end %>

<%= form_for @article do |f| %>
    <p>
      <%=f.label :title%>
      <%=f.text_field :title%>
    </p>

    <p>
      <%=f.label :description%> <br/>
      <%= f.text_area :description%>
    </p>

    <p><%= f.submit %></p>

<% end %>

ArticlesController.rb

class ArticlesController < ApplicationController
  def new
    @article = Article.new
  end

  def create
    @article = Article.new(article_params)
    if @article.save
      flash[:notice] = "Article Successfully Created"
      redirect_to article_path(@article)
    else
      render 'new'
    end
  end

  def show
    @article = Article.find(params[:id])
  end

  private

  def article_params
    params.require(:article).permit(:title, :description)
    end
  end

1 个答案:

答案 0 :(得分:1)

您是否在模型中验证这些字段是否存在?这是您的代码所期望的。否则,您可能需要添加其他验证,也可能在您的表单中。

validates :description, presence: true
validates :title, presence: true

http://guides.rubyonrails.org/active_record_validations.html