以下のコードの解説をお願いしたいです。
|x|の役割が理解できません。
todays_plans = []の[]の引数がどれに当たるのか教えていただきたいです。
よろしくお願いします。
ruby
1コード 2 def get_Week 3 wdays = ['(日)','(月)','(火)','(水)','(木)','(金)','(土)'] 4 require 'date' 5 @todays_date = Date.today 6 7 8 @week_days = [] 9 10 plans = Plan.where(date: @todays_date..@todays_date + 6) 11 12 13 7.times do |x| 14 today_plans = [] 15 plan = plans.map do |plan| 16 today_plans.push(plan.plan) if plan.date == @todays_date + x 17 end 18 wday_num = Date.today.wday + x 19 20 if wday_num >= 7 21 wday_num = wday_num - 7 22 end 23 24 days = { month: (@todays_date + x).month, date: (@todays_date+x).day, plans: today_plans, wday: wdays[wday_num]} 25 @week_days.push(days) 26 end 27 28 end 29 30
回答1件
あなたの回答
tips
プレビュー