3

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

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

但在我的脚本中,什么都没有发生。如何将 option_groups_from_colletion_for_select 与 include_blank 方法一起使用?

4

1 回答 1

2

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

select_tag(:article_id, option_groups_from_collection_for_select( @article, :categories, :name, :id, :name), {:include_blank => "Select one category"})
于 2010-07-04T01:57:29.470 回答