1
我想爲我的應用程序創建一個包裝,但不同類型的html應該是不同的。所以,我可以只寫如何爲simple_form gem中的類型創建包裝?
= simple_for_for @task, wrapper: :mine_special do |f|
= f.input :first_attr, type: :sring
= f.input :second_attr, type: :boolean
所以,我的初始化程序將包含兩個string
& boolean
類型定義:
config.wrappers :mine_special, types: [:boolean] do |b|
# configs here for check box
end
config.wrappers :mine_special, types: [:string] do |b|
# configs here for text field
end
我怎麼能這樣做?