项目详情 ruby 2.4.1p111和rails 4.2.8
以下是我的索引页面中的代码。
<%= semantic_form_for @threshold_configuration, :url => dm_threshold_configuration_path do |f| %>
//my code goes here//
<% end %>
在我的索引操作中,我设置了实例变量。
def index
super
@threshold_configuration = ThresholdValues.first
end
当我加载页面时遇到错误。
wrong number of arguments (3 for 2)
如果我将semantic_form_for替换为下面的页面正在加载。
<%= semantic_form_for :threshold_configuration, :url => dm_threshold_configuration_path do |f| %>
//my code goes here//
<% end %>
我没有得到@threshold_configuration和threshold_configuration中究竟发生的事情。根据formstatic gem手册,我使用的语法很好。
Thnx提前
阿吉特