Rails - 尝试在验证之前重建并保存日期 ->无效日期

发布于 2024-10-21 02:25:03 字数 703 浏览 1 评论 0原文

我编写了一个简单的方法,它将日期保存在数据库字段(mydate:date)中,但它返回“无效日期”错误消息。

注意:我使用 simple_form

User.rb

attr_accessor:user_birthday_1i, :user_birthday_2i, :user_birthday_3i

before_validation :prepare_mydate

def prepare_mydate
  self.mydate = Date.new(self.user_birthday_1i.to_i, self.user_birthday_2i.to_i, self.user_birthday_3i.to_i)
end

表单,

<%= f.input :birthday, :as => :date, 
                       :start_year => Date.today.year - 100,
                       :end_year => Date.today.year,
                       :order => [:month, :day, :year],
                       :prompt => true %>

这有什么问题吗? 谢谢你!

I wrote a simple method which save a date in a db field (mydate:date) but it returns an "invalid date" error message.

note: I use simple_form

User.rb

attr_accessor:user_birthday_1i, :user_birthday_2i, :user_birthday_3i

before_validation :prepare_mydate

def prepare_mydate
  self.mydate = Date.new(self.user_birthday_1i.to_i, self.user_birthday_2i.to_i, self.user_birthday_3i.to_i)
end

form

<%= f.input :birthday, :as => :date, 
                       :start_year => Date.today.year - 100,
                       :end_year => Date.today.year,
                       :order => [:month, :day, :year],
                       :prompt => true %>

What's wrong with this?
Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

末が日狂欢 2024-10-28 02:25:03

看起来您的表单顺序是:月、:日、:年,而 Date.new 顺序是年、月、日。

我建议您使用 date_select 帮助器。

It looks like your form order is :month, :day, :year, whereas Date.new order is year, month, day.

I suggest you use the date_select helper.

白色秋天 2024-10-28 02:25:03
before_save :prepare_mydate

def prepare_mydate
  self.mydate = Date.new(self.birthday.year.to_i, self.birthday.month.to_i, birthday_day.to_i)
end
before_save :prepare_mydate

def prepare_mydate
  self.mydate = Date.new(self.birthday.year.to_i, self.birthday.month.to_i, birthday_day.to_i)
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文