前提・実現したいこと
Ruby on Railsで動画を見ながら、ブログを作成しています。
ブログ画面で画像を出したいのですが、以下のようなエラーが出てしまいました。
発生している問題・エラーメッセージ
「Sprockets::Rails::Helper::AssetNotFound in Articles#index、 The asset "mtfuji.jpg" is not present in the asset pipeline.」
app/views/articles/index.html.erb <div class="container"> <h1 class="text-center">おのっぴのブログ</h1> <% @articles.each do |article| %> <div class="col-md-3 margin-top-5per"> <%= image_tag 'mtfuji.jpg' %> ←ここで、エラーが出る。 <p class="title"><%= article.title %></P> <%= article.created_at.strftime("%Y/%m/%d %H:%M:%S") %> </div> <% end %> </div>
試したこと
app/aseets/images以下に画像データ(大きさは800 × 600)が入っていることは、
確認しました。
「app/aseets/images/mtfuji.jpg」←画像データ
config/application.rbに「Rails.application.config.assets.unknown_asset_fallback = true」を
追記し、サーバーを再起動(http://localhost:3000/)すると、エラー画面は
出ず、ブログ画面にはなりますが、画像は出てきませんでした(画像のところだけ、
エラーっぽい絵が出ている)。
事前に、BootstrapというものをRailsに導入しています。
app/aseets/stylesheets/application.scssには、
@import "bootstrap-sprockets";
@import "bootstrap";
@import 'articles';
を追記しました。
補足情報(FW/ツールのバージョンなど)
railsのバージョンは、Rails 5.2.4、
rubyのバージョンは、ruby 2.5.1p57、
gem 'sass-rails'とgem 'bootstrap-sass'を
インストールしています。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。