前提・実現したいこと
Ruby on Railsでwebアプリを作っています。
lightboxを用いて画像の拡大表示実装中に以下のエラーメッセージが発生しました。
発生している問題・エラーメッセージ
undefined method `to_model' for #<Refile::File:0x00007f30c55a5eb8> Did you mean? to_yaml
該当のソースコード
view
1 2<link href="https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.7.1/css/lightbox.css" rel="stylesheet"> 3<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> 4<script src="https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.7.1/js/lightbox.min.js" type="text/javascript"></script> 5 6<% @posts.each do |post| %> 7<td> 8 <%= link_to post.image, "data-lightbox": post.image do %> 9 <%= attachment_image_tag(post, :image, :fill, 50, 50) %> 10 <% end %> 11</td> 12<% end %>
試したこと
どちらの書き方でもエラーが起こりました。
<%= link_to hoge-image, "data-lightbox": hoge-image do %>
<%= image_tag hoge-image, class:"img"%>
<% end %>
<%= link_to @hoge.image.url, 'data-lightbox': @hoge.image do %>
<%= image_tag @hoge.image.url if @hoge.image? %>
<% end %>
補足情報(FW/ツールのバージョンなど)
rails version 5.2.6
あなたの回答
tips
プレビュー