gpt4 book ai didi

ruby-on-rails - 在 rails select 上设置一个类

转载 作者:数据小太阳 更新时间:2023-10-29 08:55:10 25 4
gpt4 key购买 nike

我需要为这个 rails select 设置一个 HTML 类,我已经尝试了很多变体,但什么都没有

<%= add.select :state,
@states.map { |s| [ s.name, s.abbr ] },
:class => 'state',
:include_blank => true
%>

最佳答案

我相信您的 html_options 应该在您的 options 之后。此外,由于您为最后两个参数指定了两个散列,因此您应该使用花括号明确告诉 Ruby 它们是两个独立的散列。试试这个:

<%= add.select(:state,
@states.map { |s| [ s.name, s.abbr ] },
{ :include_blank => true },
{ :class => 'state' }
)
%>

关于ruby-on-rails - 在 rails select 上设置一个类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3286245/

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