【Rails】ActiveStorageを用いた画像複数枚投稿のエラー
エラー【undefined method `to_model'】
フリマアプリの開発中、以下のようなエラーが出ました。
Can't resolve image into URL: undefined method
to_model' for #<ActiveStorage::Attached::Many:0x00007fb7ffa59fb0>
Did you mean? to_yaml
現状
- ActiveStorageというGemをを用いて画像保存を可能にしている。
- 1つの商品につき複数の画像の投稿を可能にした。←今ここ
エラーの内容
to_model
というメソッドは定義されていないよーって言われてます。
以下のように、保存した画像を表示させたい時にエラーがでました。
問題があったコード
<%= image_tag @item.images, class: 'buy-item-img' %>
解決したコード
<%= image_tag @item.images[0], class: 'buy-item-img' %>
一つの商品に複数枚画像があるため、どの画像を表示させるかを記述する必要があります。
そうじゃなかったらどの画像を表示するのか判断できないですもんね😓
他の方の記事などを見てみると、
@item.images.url
と記述すれば解決することもあったそうです。
参考になれば、と思います!
Author And Source
この問題について(【Rails】ActiveStorageを用いた画像複数枚投稿のエラー), 我々は、より多くの情報をここで見つけました https://qiita.com/zuu_aa/items/6ddd8da3a1e6b985f91b著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .