s3を利用して画像を保存して、その画像URLを取得してAPIで叩くという作業を考えているのですが、二進も三進も画像urlの取得の仕方がわかりまん。何か、良い方法がございましたら、ご教授よろしくお願いします。
lass Comment < ApplicationRecord has_one_attached :image end
class CommentsController < ApplicationController def new @comment = Comment.new end def create @comment = Comment.create params.require(:comment).permit(:content, :image) # POINT render ここで画像url付きのjsonを返したい。 end def show @comment = Comment.find(params[:id]) end def edit @comment = Comment.find(params[:id]) end def update @comment = Comment.find(params[:id]) @comment.update params.require(:comment).permit(:content, :image) # POINT redirect_to @comment end end
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/19 11:51
2019/12/19 12:19
2019/12/19 12:34
2019/12/19 12:35