環境
- Mac(12.2.1)
- MacBook Pro (13-inch, 2020)
- 2 GHz クアッドコアIntel Core i5
- 16 GB 3733 MHz LPDDR4X
- ruby (3.0.0p0)
- rails (7.0.1)
- mysql2 (0.5.3)
はじめに
前提知識
解決したい内容
egoscore=EgoScore.where(user_id: current_user.id).pluck(:cp_score,:np_score,:a_score,:fc_score,:ac_score).flatten
改善策
下記コードを追加する
order(updated_at: :desc).limit(1)
egoscore=EgoScore.where(user_id: current_user.id).order(updated_at: :desc).limit(1).pluck(:cp_score,:np_score,:a_score,:fc_score,:ac_score).flatten
参考にした記事