Hàm băm thuộc tính bổ sung chỉ được hỗ trợ trong Rails 3.
Nếu bạn đang sử dụng Rails 2.x và muốn ghi đèoptions_for_select
Tôi về cơ bản chỉ cần sao chép mã Rails 3. Bạn cần ghi đè 3 phương thức sau:
def options_for_select(container, selected = nil)
return container if String === container
container = container.to_a if Hash === container
selected, disabled = extract_selected_and_disabled(selected)
options_for_select = container.inject([]) do |options, element|
html_attributes = option_html_attributes(element)
text, value = option_text_and_value(element)
selected_attribute = ' selected="selected"' if option_value_selected?(value, selected)
disabled_attribute = ' disabled="disabled"' if disabled && option_value_selected?(value, disabled)
options << %(<option value="#{html_escape(value.to_s)}"#{selected_attribute}#{disabled_attribute}#{html_attributes}>#{html_escape(text.to_s)}</option>)
end
options_for_select.join("\n").html_safe
end
def option_text_and_value(option)
# Options are [text, value] pairs or strings used for both.
case
when Array === option
option = option.reject { |e| Hash === e }
[option.first, option.last]
when !option.is_a?(String) && option.respond_to?(:first) && option.respond_to?(:last)
[option.first, option.last]
else
[option, option]
end
end
def option_html_attributes(element)
return "" unless Array === element
html_attributes = []
element.select { |e| Hash === e }.reduce({}, :merge).each do |k, v|
html_attributes << " #{k}=\"#{ERB::Util.html_escape(v.to_s)}\""
end
html_attributes.join
end
Kinda lộn xộn nhưng đó là một lựa chọn. Tôi đặt mã này trong một mô-đun trợ giúp được gọi là RailsOverrides
sau đó tôi đưa vào ApplicationHelper
. Bạn cũng có thể làm một plugin / đá quý nếu bạn thích.
Một điều đáng chú ý là để tận dụng các phương thức này, bạn phải luôn gọi options_for_select
trực tiếp. Các phím tắt như
select("post", "person_id", Person.all.collect {|p| [ p.name, p.id, {"data-stuff"=>"html5"} ] })
sẽ mang lại kết quả cũ. Thay vào đó nên là:
select("post", "person_id", options_for_select(Person.all.collect {|p| [ p.name, p.id, {"data-stuff"=>"html5"} ] }))
Một lần nữa không phải là một giải pháp tuyệt vời, nhưng nó có thể đáng để đi đến thuộc tính dữ liệu hữu ích như vậy.