变量无法使用link_to rails helper的数据属性

时间:2014-07-21 16:11:37

标签: ruby-on-rails ruby-on-rails-4 helper custom-data-attribute

我的页面中有很多锚点,每一个都与特定的表单有关。

因此,在每个rails helper link_to中,我想添加一个特定的数据表单属性,如下所示:

link_to "Click here!", "#", data: { :form => "form-#{increment}"}

这行代码无效,并出现以下错误:

wrong number of arguments (0 for 2..3)

如何修复此错误的任何线索?

谢谢!

1 个答案:

答案 0 :(得分:0)

increment方法已经是ActiveSupport / ActiveRecord的一部分:http://apidock.com/rails/ActiveRecord/Base/increment

它期望你没有提供attribute参数。