0

仮想属性start_dateとデータベース列start(datetime) があります。

startの日付 (時刻ではない) をからの日付でオーバーライドするにはどうすればよいstart_dateですか?

セッターメソッドでこれを試したところ、ロガーは self.start/start が設定されていると言いますが、データベースと更新ログstartにはまだ古い日付があります。

# model: db table with columns: id(int), start(datetime)
class DateTimeTest < ActiveRecord::Base

  attr_accessible :start_date, :start

  def start_date=(value)
    logger.debug '>>>>' + start.inspect
    logger.debug '>>>>' + self.start.inspect
    start = DateTime.new(value.to_date.year, value.to_date.month, value.to_date.mday, 15,15,15)
    self.start = DateTime.new(value.to_date.year, value.to_date.month, value.to_date.mday, 15,15,15)
    logger.debug '>>>>' + start.inspect
    logger.debug '>>>>' + self.start.inspect
  end

end

# view
<%= simple_form_for(@datetimetest) do |f| %>
  <%= f.input :start_date, :as => :string %>
  <%= f.input :start %>
  <%= f.button :submit %>
<% end %>

# controller is a base scaffolding controller

startログには、次の情報が入力されていることがわかります。

Parameters: {..., "datetimetest"=>{"start_date"=>"03.05.2012", "start(1i)"=>"2012", "start(2i)"=>"5", "start(3i)"=>"1", "start(4i)"=>"13", "start(5i)"=>"05"}
4

1 に答える 1

1

DateTimeは、年、月、日付、時、分、秒に分解されますが、日付と時刻に分割するのは便利ではありません。

def start_date(value)
  start = DateTime.new(value.year, value.month, value.mday,
                       start.hour, start.minute, start.second)
  logger.debug self.start.inspect
end
于 2012-05-01T11:13:15.237 に答える