我有一个枚举,prediction_type
在模型中以这种方式声明:
enum prediction_type: [:neural_network, :capm]
但是,当我从视图中提交以下表单时,其他字段(prediction_days
)会被实例化,而prediction_type
仍为nil
。
<%=form_for @currency do |f| %>
<%= f.select(:prediction_days, options_for_select(1..30)) %>
<%= f.hidden_field :prediction_type, value: :neural_network%>
<%= f.submit "Predict", class: "btn btn-primary" %>
<% end %>
答案 0 :(得分:1)
假设枚举预测类型是在货币模型下定义的。
<%= f.hidden_field :prediction_type, value: Currency.predcition_types[:neural_network] %>