3

我正在尝试在助手中执行此操作:

  def radio_button_by_code(da_form, da_field, product_id, option_code)
    txt = Product.find(product_id).options.find_by_code(option_code).title
    btn = da_form.radio_button(da_field, txt, :data-product-id => product_id)
    "<label>#{btn} #{txt}</label>".html_safe
  end

但是,如果我这样做,我总是会得到一个未定义的局部变量或方法“产品”错误。

如果我删除 :data-product-id => product_id 部分,那么它会正确输出单选按钮。

如何将数据属性添加到 radio_button?

4

1 回答 1

9

试试这个: "data-product-id" => product_id

于 2012-05-01T13:39:21.457 回答