ruby
1undefined method `/' for [2, 20001]:Array 2 3@profit_changes << profit_month/@user.notes.sum(:profit_and_loss)*100
下の部分で上のようなエラーが起きています。
これはなぜなのでしょうか?
データが存在しない場合は分岐で避けているはずなのですが…割り算が使えないです。。
以下はindexアクション全てのコードです。
対策がわかる方ご教授の方よろしくお願い申し上げます。
ruby
1class UsersController < ApplicationController 2 3 def index 4 @user=current_user 5 @notes=@user.notes.all.order("id DESC").page(params[:page]).per(30) 6 @comments=[] 7 if @user.notes.present? 8 @notes.each do |note| 9 @comments << note.comments.count 10 end 11 end 12 @profit_symbol=@user.notes.group(:symbol).sum(:profit_and_loss) 13 profit_month=@user.notes.group("MONTH(created_at)") 14 @profit_changes=[] 15 if @user.notes.present? 16 profit_month.sum(:profit_and_loss).each do |profit_month| 17 @profit_changes << profit_month/@user.notes.sum(:profit_and_loss)*100 18 end 19 end 20 @profit_changes_symbol=[] 21 if @user.notes.present? 22 @user.notes.group(:symbol,"MONTH(created_at)").each do |profit_changes_symbol| 23 @profit_changes_symbol << (profit_changes_symbol.sum(:profit_and_loss)/@profit_symbol*100) 24 end 25 end 26 @victory_rates=[] 27 if @user.notes.present? 28 @user.notes.where(:profit_and_loss > 0).group("MONTH(created_at)").each do |victory_rates| 29 @victory_rates << (victory_rates.count/profit_month.count) 30 end 31 end 32 this_month = Date.today.all_month 33 before_month=Date.today.last_month 34 profit_this_month = [] 35 profit_before_month = [] 36 @user.notes.each do |note| 37 if this_month.include?(Date.parse(note[:created_at].to_s)) 38 profit_this_month << note 39 elsif before_month.include?(Date.parse(note[:created_at].to_s)) 40 profit_before_month << note 41 end 42 end 43 @profit_this_month= profit_this_month.sum(:profit_and_loss) 44 if @user.notes.present? 45 @profit_this_month_average = @profit_this_month / profit_this_month.length 46 @victory_rate_this_month = profit_this_month.where(:profit_and_loss > 0).count/profit_this_month.count 47 end 48 @profit_before_month= profit_before_month.sum(:profit_and_loss) 49 if @user.notes.present? 50 @profit_before_month_average= @profit_before_month.to_i / profit_before_month.length 51 @victory_rate_before_month=profit_before_month.where(:profit_and_loss > 0).count/profit_before_month.count 52 end 53 end
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/10 07:58
2020/02/10 08:05
2020/02/10 10:16
2020/02/11 03:14
2020/02/11 03:58
2020/02/11 04:46 編集