即使正在发布值,也会显示错误的验证

时间:2013-01-24 17:13:49

标签: ruby-on-rails ruby-on-rails-3 validation

我有以下模型验证

  validates_presence_of :enddate
  validates_presence_of :startdate

这就是发布的内容

Parameters: {"utf8"=>"✓", "authenticity_token"=>"QczhHQoDU7a0/WKnUnLlzQ9Aob/NQOj1naiwfOYIW1c=", 
"billsanddeposit"=>{"name"=>"Test Bill Item", 
"itemcategory_id"=>"2", "repeatsevery"=>"2", "startdate"=>"01/24/2013", "enddate"=>"01/31/2013", 
"deposit"=>"0", "amount"=>"100"}, "commit"=>"Create Billsanddeposit"}

这些是出现的错误

Enddate can't be blank
Startdate can't be blank

这些是数据库中的日期时间字段,当脚手架最初创建表单时,它具有date_select。我将其更改为带有jquery datepicker的text_field,现在即使我可以看到如上所示发布的值,但我得到上述错误表明它们没有被看到。

这是整个模型

class Billsanddeposit < ActiveRecord::Base
  attr_accessible :amount, :bankaccount_id, :deposit, :enddate, :itemcategory_id, :name, :repeatsevery, :repeattype_id, :startdate

  validates_presence_of :amount
  validates_presence_of :bankaccount_id
  validates_presence_of :itemcategory_id
  validates_presence_of :enddate
  validates_presence_of :name
  validates_presence_of :repeatsevery
  validates_presence_of :repeattype_id
  validates_presence_of :startdate


  belongs_to  :bankaccount
  belongs_to  :repeattype
  belongs_to  :itemcategory
  has_many    :ledgeritems
end

到目前为止,我所做的就是添加关系和验证。

这是控制器,几乎完全默认

  def create
    @billsanddeposit = Billsanddeposit.new(params[:billsanddeposit])

    respond_to do |format|
      if @billsanddeposit.save
        @billsanddeposits = Billsanddeposit.joins(:bankaccount).where("bankaccounts.user_id = ?", current_user.id)
        @billsanddeposit = Billsanddeposit.new

        format.html { redirect_to @billsanddeposit, :notice => 'Billsanddeposit was successfully created.' }
        format.json { render :json => @billsanddeposit, :status => :created, :location => @billsanddeposit }
      else
        @billsanddeposits = Billsanddeposit.joins(:bankaccount).where("bankaccounts.user_id = ?", current_user.id)

        format.html { render :action => "index" }
        format.json { render :json => @billsanddeposit.errors, :status => :unprocessable_entity }
      end
    end
  end

2 个答案:

答案 0 :(得分:0)

我发表了评论,但这是我的回复。

如果您想要保存数据库enddatestartdate,则必须添加attr_accessible

attr_accessible :enddate, :startdate

如果您可以在操作created上收到这些参数,则可能是日期格式存在问题。

此外,您应确保模型上的这些属性的类型为Date,Time ...等。

问候!

答案 1 :(得分:0)

我在此博客中发现了问题:http://library.edgecase.com/american-date-parsing#tldr

因为我使用的是美国日期格式。通过包含引用的gem它再次开始工作。