0
1

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 3 years have passed since last update.

rails開発でハマったto_modelのエラー

Posted at

 railsでフリマアプリをチーム開発してる時、あまり見かけないエラーに遭遇したので、具体的な原因はよくわかっていませんが、残しておきます。
 rubyバージョン :2.5.1
 railsバージョン :5.2.4.2
 データベース   :mysql
#エラーが発生したコード

_product.html.haml
 =image_tag product.images.first.images

productモデルとimageモデルが一対多の関係で結びついており、productモデルにはaccepts_nested_attributes_for :imagesが書かれています。
#エラー画面
image.png

to_modelという記述はどこにもしていませんし、to_xmlというxml形式で出力させる形式のメソッドをどう使えばいいのかわかりません。

#解決したコード

_product.html.haml
  = image_tag product.images.first.images.url

 このエラーの"to_model”の意味は調べてみたもののよくわかっていませんが、データの呼び出しに失敗しているエラー(このオブジェクトにはこんなメソッドは存在しないよという意味のエラー)だと思うので呼び出し方を変えたらうまくいきました。
 あまり中身のない記事ですが、参考になれば幸いです。

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?