私は new.erb.html にそのようなコードを持っています:
<% form_for(@ratification) do |f| %>
<%= f.error_messages %>
<% f.fields_for :user do |fhr| %>
<p>
<%= fhr.label :url %><br />
<%= fhr.text_field_with_auto_complete :url %>
</p>
<% end %>
<% end %>
Ratification.rb が空の場合は問題ありません。fields_for は問題なく動作します。
しかし、私が書いた場合:
class Ratification < ActiveRecord::Base
belongs_to :user
accepts_nested_attributes_for :user
end
また
class Ratification < ActiveRecord::Base
belongs_to :user
def user_attributes=(attr)
...
end
end
f.fields_for は何も生成しません! どうして!?
レール: 2.3.8
オートコンプリート用プラグイン: Repeated_auto_complete