前提・実現したいこと
開発環境で出ない500エラーが本番環境で発生します。
一部のページに遷移できず、エラーになってしまいます。
現在、テスト環境からheroku上にあげています。
ユーザー詳細、ユーザー一覧に遷移できない状況
メインページ、サインイン、ログインページは問題なく遷移できます。
発生している問題・エラーメッセージ
エラーメッセージ heroku log ActionView::Template::Error (undefined method `profile_image_id' for #<User:0x00007f1ca467ece8>
該当のソースコード
user コントローラー
rails
1class UsersController < ApplicationController 2 before_action :authenticate_user!, except: [:index] 3 def index 4 @users = User.all 5 end 6 7 def show 8 @user = User.find(params[:id]) 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 if @user.update(user_params) 18 redirect_to user_path 19 else 20 render :edit 21 end 22 end 23 24 private 25 def user_params 26 params.require(:user).permit(:name, :email, :profile, :profile_image) 27 end 28end
--user view--
rails
1section class="section"> 2 <div class="container "> 3 <div class="columns is-centered"> 4 <div class="column is-8"> 5 <div class="columns is-centered"> 6 <div class="column is-4"> 7 <figure class="image-a is-128x128" style="margin-left: auto; margin-right: auto;"> 8 <%= attachment_image_tag @user, :profile_image, fallback: "noimage.png", class: "profile_image is-rounded" %> 9 </figure> 10 </div> 11 <div class="column is-7"> 12 <table class="table is-fullwidth"> 13 <tr> 14 <td class="is-size-4"> 15 <strong><%= @user.name %></strong> 16 <% if current_user.id == @user.id %> 17 <%= link_to "編集", edit_user_path(@user.id), class: "button" %> 18 <% end %> 19 </td> 20 </tr> 21 </table> 22 <table class="table is-fullwidth"> 23 <tr> 24 <td> 25 <%= @user.profile %> 26 </td> 27 </tr> 28 </table> 29 </div> 30 </div> 31 </div> 32 </div> 33 </div> 34</section>
user モデル
rails
1class User < ApplicationRecord 2 # Include default devise modules. Others available are: 3 # :confirmable, :lockable, :timeoutable, :trackable and :omniauthable 4 devise :database_authenticatable, :registerable, 5 :recoverable, :rememberable, :validatable 6 7 PASSWORD_REGEX = /\A(?=.*?[a-z])(?=.*?\d)[a-z\d]+\z/i.freeze 8 validates_format_of :password, with: PASSWORD_REGEX, message: '英字と数字の両方を含めて設定してください', on: :create 9 10 validates :name, presence: true 11 12 has_many :posts 13 attachment :profile_image 14end 15
導入しているgem
rails
1gem 'devise' 2gem 'mini_magick' 3gem 'image_processing', '~> 1.2' 4gem 'pry-rails' 5gem "bulma-rails" 6gem "refile", require: "refile/rails", github: 'manfe/refile' 7gem "refile-mini_magick" 8gem 'carrierwave', '~> 1.0'
CSSにbulma-railsをつかっているので、
application.scss
rails
1 @import "bulma";
試したこと
ActionView::Template::Error (undefined method `profile_image_id'エラーと言われているので、スペルチェック、
heroku restart -app の実行、
エラーメッセージの通りに変更
(Did you mean? profile_image、profile_image_data、profile_image=、profile_image_url):)
挙動に変化なし
テスト環境では、何もエラー表示がされないため困っています。
(画面は、エラーなくしっかり表示されています。)
エラーにより遷移しないページどちらも、refileを使用して、サムネイルを表示させています。
参考にした記事になります。
https://qiita.com/syo19961113/items/b5f60e3df64f69cfe5c3
どうぞアドバイスを宜しくお願いします。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。