私はsimple_formでレール4で作業しています。私はコンテンツとカテゴリという2つのモデルを持っています。カテゴリには多くのコンテンツがあり、コンテンツはカテゴリに属します。問題は、私のフォームに表示するcollection_selectが表示されないようにしたい場合です。 コードはf.collection_selectが表示されません
<%= simple_form_for @content, html: { multipart: true } do |f| %>
<%= f.input :title, required: true %>
<%= f.input :tagline, required: true, label: 'Short description', input_html: { maxlength: 20 }%>
<%= f.input :description, required: true %>
<%= f.input :price, required: true %>
<%= f.input :team, required: true, label: 'Team member number' %>
<%= f.input :equity, required: true, label: 'Equity percentage'%>
<%= f.input :website, label: 'Website Link', as: :string%>
<%= f.input :linkedin, label: 'Linkedin Link', as: :string %>
<%=f.collection_select :category_id, Category.all, :id, :name, {prompt: "Chose a category"} %>
<br>
<%= f.input :copertina, required: true, label: 'Image Cover' %>
<br>
<%= f.button :submit %>
<% end %>
ありがとうございます。
編集:jsの問題がありますか?
アグレジャンドロ・ソロ・コシ・ノン・ファンジオナ。ドブレイ運賃は? –