0

下面的简单表单使用下拉列表接受用户输入zonezone_id可以使用 检索用户输入的params[:controller][:zone_id]

<%=f.input :zone_id, :label => t('Zone'), :collection => Zone.where(:active => true).order('ranking_order'), :label_method => :zone_name, :value_method => :id, :include_blank => true %>

然而,在我们的 rails 3.2 应用程序中,我们还需要保留zone_name此处的用户输入标签。有没有办法zone_name在控制器中检索用户输入的标签()?谢谢。

4

0 回答 0