1. ホーム
  2. ruby-on-rails

[解決済み] どなたか、collection_selectをわかりやすく説明していただけませんか?

2022-02-05 23:43:23

質問内容

のRails APIドキュメントを見ているところです。 collection_select であり、神懸かり的である。

見出しはこうです。

collection_select(object, method, collection, value_method, text_method, options = {}, html_options = {})

そして、これが唯一のサンプルコードです。

collection_select(:post, :author_id, Author.all, :id, :name_with_initial, :prompt => true)

どなたか、簡単なアソシエーション(例えば User ハッシュマニー Plans であり、かつ Plan に属しています。 User )、構文で何を使いたいのか、その理由は?

編集1: また、その仕組みを form_helper または通常のフォームを使用してください。ウェブ開発を理解しているが、Railsについては「比較的新しい」ウェブ開発者にこれを説明すると想像してください。あなたならどう説明しますか?

どのように解決するのか?

collection_select(
    :post, # field namespace 
    :author_id, # field name
    # result of these two params will be: <select name="post[author_id]">...

    # then you should specify some collection or array of rows.
    # It can be Author.where(..).order(..) or something like that. 
    # In your example it is:
    Author.all, 

    # then you should specify methods for generating options
    :id, # this is name of method that will be called for every row, result will be set as key
    :name_with_initial, # this is name of method that will be called for every row, result will be set as value

    # as a result, every option will be generated by the following rule: 
    # <option value=#{author.id}>#{author.name_with_initial}</option>
    # 'author' is an element in the collection or array

    :prompt => true # then you can specify some params. You can find them in the docs.
)

あるいは、あなたの例は次のようなコードで表すことができます。

<select name="post[author_id]">
    <% Author.all.each do |author| %>
        <option value="<%= author.id %>"><%= author.name_with_initial %></option>
    <% end %>
</select>

これは FormBuilder ということですが FormOptionsHelper