我可以在rails上使用带有include_blank的option_groups_from_collection_for_select吗?

时间:2010-07-04 01:25:51

标签: ruby-on-rails helpers

我想在我的rails帮助上使用脚本如下:

select_tag(:article_id, option_groups_from_collection_for_select( @article, :categories, :name, :id, :name, :include_blank => "Select one category"))

但在我的剧本中,没有任何反应。如何在include_blank方法中使用option_groups_from_colletion_for_select?

1 个答案:

答案 0 :(得分:2)

include_blank是选择助手的一个选项,所以你几乎就在那里:

select_tag(:article_id, option_groups_from_collection_for_select( @article, :categories, :name, :id, :name), {:include_blank => "Select one category"})