gpt4 book ai didi

ruby-on-rails - rails date_select 类不会生效

转载 作者:行者123 更新时间:2023-12-03 16:17:59 25 4
gpt4 key购买 nike

我有以下使用 date_select..

<%= f.date_select :birthday, :order => [:month, :day], :prompt => { :day => 'Select day', :month => 'Select month' }, :html => {:class => "select birthday"} %>

但是该类没有显示在 html 中..
<select id="profile_birthday_2i" name="profile[birthday(2i)]">
<select id="profile_birthday_3i" name="profile[birthday(3i)]">

我也试过了。。
<%= f.date_select :birthday, :order => [:month, :day], :prompt => { :day => 'Select day', :month => 'Select month' }, :class => "select birthday" %>

那也没有用。有任何想法吗?

最佳答案

HTML 选项是 date_select 的第四个参数。方法,而不是第三个参数中的键。

来自 documentation :

date_select(object_name, method, options = {}, html_options = {})

所以你会想要:
f.date_select :birthday, { :order => [:month, :day], :prompt => { :day => 'Select day', :month => 'Select month' } }, {:class => "select birthday"} 

关于ruby-on-rails - rails date_select 类不会生效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15120948/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com