我正在尝试在我的应用程序中为货币进行自定义输入。我有那些引导包装器等(我认为它带有 simple_form 或引导 gem ......),所以,我可以做类似的事情:
<%= f.input :cost, wrapper => :append do %>
<%= content_tag :span, "$", class: "add-on" %>
<%= f.number_field :cost %>
<% end %>
它按预期工作。问题是:我在很多地方都需要同样的东西,我不想到处复制/粘贴。
所以,我决定创建一个自定义输入。
到目前为止,我得到了以下代码:
class CurrencyInput < SimpleForm::Inputs::Base
def input
input_html_classes.unshift("string currency")
input_html_options[:type] ||= input_type if html5?
@builder.input attribute_name, :wrapper => :append do |b|
# content_tag(:span, "$", class: "add-on")
b.text_field(attribute_name, input_html_options)
end
end
end
但是我遇到了一些错误。看起来不像b
预期的那样来,所以,它只是不起作用。
真的有可能做到这一点吗?我找不到任何示例,也无法自己完成。
提前致谢。