Active Storageを使って画像を投稿できるブログを作ろうとしています。
- こちらの記事を参考にしました。
- Rails 6.0.3
- aws s3
画像のストレージにはS3を使用しており下記の画像からデータの格納はできているようなのですが、
肝心の画像がすべてのページで表示されません。
まずは記事の一覧(index)にアクセスしたときに画像を表示したいのですが、
原因が分からず助言をお願いしたいです。
上記が現状になります。添付した画像が表示されていません。
画像のURLにアクセスしてみたところ下記のエラーがでました。
controllerとviewは下記の通りです。
controller
1class ArticlesController < ApplicationController 2 3 def create 4 @article = Article.create params.require(:article).permit(:title, :content, :image, :category) 5 if @article.save 6 redirect_to @article #@articleはarticle_path(@article)と同義 7 else 8 #エラー時は再度、記事登録画面を表示させる 9 render :new 10 end 11 end 12 13 def show 14 @article = Article.find(params[:id]) 15 end 16 17 def index 18 @articles = Article.all 19 end 20 21 def update 22 @article = Article.find(params[:id]) 23 if @article.update params.require(:article).permit(:title, :content, :image, :category) 24 redirect_to @article 25 else 26 render :edit 27 end 28 end 29 30####(略)#### 31 32 private 33 #ストロングパラメータでpermitに渡された値以外を受け取らないようにする 34 def article_params 35 params.require(:article).permit(:title,:content,:category,:image) 36 end 37end
view
1<table> 2 <tbody> 3 4 <tr> 5 <th>タイトル</th> 6 <th>内容</th> 7 </tr> 8 <% @articles.each do |article| %> 9 <tr> 10 <td><%= article.category %></td> 11 <td><%= article.title %></td> 12 <td><%= image_tag article.image %></td> 13 <td><%= article.content %></td> 14 <td><%= link_to '編集',edit_article_path(article) %></td> 15 <td><%= link_to '削除',article_path(article), 16 method: :delete,data: {confirm:'削除してもいいですか?'}%></td> 17 </tr> 18 <% end %> 19 </tbody> 20</table>
必要な情報などありましたらおっしゃっていただけると嬉しいです。
何卒よろしくお願いします!!
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。