rails collection_select与select

web*_*wan 38 ruby ruby-on-rails

collection_selectselectRails助手:我应该使用哪一个?

我无法在两种方式上看到差异.两个帮助程序都采用集合并在select标记内生成选项标记.有没有collection_select比这更好的场景select?或者我在这里缺少什么?

Sim*_*tti 71

collection_select当项列表是ActiveRecord对象数组时,可以使用它.collection_select它建立在顶部,select所以当你需要显示一个对象集合而不是一个字符串数组时,这是一个方便的方法.

collection_select(:post, :author_id, Author.find(:all), :id, :name)
Run Code Online (Sandbox Code Playgroud)