13

我正在尝试在我的应用程序中为货币进行自定义输入。我有那些引导包装器等(我认为它带有 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预期的那样来,所以,它只是不起作用。

真的有可能做到这一点吗?我找不到任何示例,也无法自己完成。

提前致谢。

4

1 回答 1

20

该块变量不存在,您的输入法必须是这样的:

class CurrencyInput < SimpleForm::Inputs::Base

  def input
    input_html_classes.unshift("string currency")
    input_html_options[:type] ||= input_type if html5?

    template.content_tag(:span, "$", class: "add-on") +
      @builder.text_field(attribute_name, input_html_options)
  end
end

现在,您可以在 Simple Form 初始化程序中将默认包装器注册到此自定义输入:

config.wrapper_mappings = { :currency => :append }

你可以这样使用:

<%= f.input :cost, :as => :currency %>
于 2013-03-14T13:03:51.337 回答