0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

nested_attributesを使用したつもりになっていて、 ActiveModel::UnknownAttributeError:が出てしまっていた。

Posted at

あたりまえなのですが、
accepts_nested_attributes_forを使用するときは、モデルに定義してあげないといけません。

本当に当たり前。
ただ、大きなファイルをいじっている時など書いたつもりになっていることがあると思います。

なので、nested_attributesを使う場合などは、
もう一度モデルに

accepts_nested_attributes_for :user_profile, allow_destroy: true

などが定義されていることを確認してください。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?