デプロイ後に一部ページでWe're sorry, but something went wrong.エラーが出る

実現したいこと

We're sorry, but something went wrong.のエラーを解消

前提

・ページはrailsと一部にJSを使用(今回はrailsのエラーのはず)
・デプロイは完了済み

発生している問題・エラーメッセージ

テンプレートファイルのエラーだと言われていて、 app/views/user/customers/show.html.erbファイルの31行目のエラーだということはわかります。
内容的には、"testimonials"が未定義メソッドだという内容だと思います。
しかし、マイグレーションファイルに記述はありましたし、ローカルでは問題なく表示されています。

以下ログ内容です。

I, [2024-04-07T06:58:34.502448 #3446] INFO -- : [9b25652e-9d7d-4d3f-92f5-1ece706144fa] Started GET "/customer/my_page" for 14.11.8.34 at 2024-04-07 06:58:34 +0000 I, [2024-04-07T06:58:34.503179 #3446] INFO -- : [9b25652e-9d7d-4d3f-92f5-1ece706144fa] Processing by User::CustomersController#show as HTML I, [2024-04-07T06:58:34.515904 #3446] INFO -- : [9b25652e-9d7d-4d3f-92f5-1ece706144fa] Rendered user/customers/show.html.erb within layouts/application (Duration: 10.0ms | Allocations: 4967) I, [2024-04-07T06:58:34.516082 #3446] INFO -- : [9b25652e-9d7d-4d3f-92f5-1ece706144fa] Rendered layout layouts/application.html.erb (Duration: 10.2ms | Allocations: 4997) I, [2024-04-07T06:58:34.516305 #3446] INFO -- : [9b25652e-9d7d-4d3f-92f5-1ece706144fa] Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.6ms | Allocations: 5650) F, [2024-04-07T06:58:34.517322 #3446] FATAL -- : [9b25652e-9d7d-4d3f-92f5-1ece706144fa] [9b25652e-9d7d-4d3f-92f5-1ece706144fa] ActionView::Template::Error (undefined method `testimonials' for #<User id: 1, created_at: "2024-04-06 12:36:28.731079000 +0900", updated_at: "2024-04-06 12:36:28.731079000 +0900", email: "111@111", nickname: "111">): [9b25652e-9d7d-4d3f-92f5-1ece706144fa] 28: [9b25652e-9d7d-4d3f-92f5-1ece706144fa] 29: <tr> [9b25652e-9d7d-4d3f-92f5-1ece706144fa] 30: <td style="width:45%" class="table-active">自己紹介文</td> [9b25652e-9d7d-4d3f-92f5-1ece706144fa] 31: <td><%= @user.testimonials %></td> [9b25652e-9d7d-4d3f-92f5-1ece706144fa] 32: </tr> [9b25652e-9d7d-4d3f-92f5-1ece706144fa] 33: [9b25652e-9d7d-4d3f-92f5-1ece706144fa] 34: </tbody> [9b25652e-9d7d-4d3f-92f5-1ece706144fa] [9b25652e-9d7d-4d3f-92f5-1ece706144fa] app/views/user/customers/show.html.erb:31

試したこと

・EC2の再起動
・git pull→マイグレーションの動作

コメントを投稿

0 コメント