私はそのようなform_forを持っています:
<%= form_for(@post) do |f| %>
モデルの属性ではないパラメータを送信したい
<%= f.text_field :label%>
Labelモデル(labels has_many:postsおよびposts has_many:labels)があり、posts_controllerのcreateアクションで、labeltext_fieldに基づいて新しいLabelオブジェクトを作成します。上記のtext_fieldを使用すると、次のようになります。
undefined method `label'for #<Object>
どうすればこれを達成できますか?
前もって感謝します!