前提・実現したいこと
railsにて画像を表示したいのですが山が書いてある画像になってしまいます。
発生している問題・エラーメッセージ
該当のソースコード
html
1<table class = "table"> 2 <tbody> 3 <tr><%= attachment_image_tag user, :profile_image,:fill,100,100, fallback: "no_image.jpg"%></tr> 4 <tr> 5 <th>name</th> 6 <th><%= user.name %></th> 7 </tr> 8 <tr> 9 <th>introduction</th> 10 <th><%= user.introduction %></th> 11 </tr> 12 </tbody> 13</table> 14<div class = "row"> 15 <%= link_to '',edit_user_path(user),class: "btn btn-outline-secondary btn-block fas fa-user-cog edit_user_#{user.id}" %> 16</div>
controller
1class UsersController < ApplicationController 2 3 def show 4 @user = User.find(params[:id]) 5 end 6 7 def index 8 @users = User.all 9 end 10 11 def edit 12 @user = User.find(params[:id]) 13 end 14 15 def update 16 @user = User.find(params[:id]) 17 @user.update(user_params) 18 redirect_to user_path(@user.id) 19 end 20 21 private 22 23 def user_params 24 params.require(:user).permit(:name,:introduction,:profile_image) 25 end 26end 27
usermoderl
1 attachment :profile_image
試したこと
:fill,100,100, を size: "100x100"に変更しましたが変わりませんでした。
補足情報(FW/ツールのバージョンなど)
・gem
gem "refile", require: "refile/rails", github: 'manfe/refile'
gem "refile-mini_magick"記載
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。