我的页面中有很多锚点,每一个都与特定的表单有关。
因此,在每个rails helper link_to
中,我想添加一个特定的数据表单属性,如下所示:
link_to "Click here!", "#", data: { :form => "form-#{increment}"}
这行代码无效,并出现以下错误:
wrong number of arguments (0 for 2..3)
如何修复此错误的任何线索?
谢谢!
答案 0 :(得分:0)
increment
方法已经是ActiveSupport / ActiveRecord的一部分:http://apidock.com/rails/ActiveRecord/Base/increment
它期望你没有提供attribute
参数。