以下のようなrailsでのeach文の処理でうまく処理が動かず困っています。アドバイスいただけないでしょうか。
Rails
1@root_tasks = Task.where(created_user_id: self.id, depth: '0', status: '1') 2 3 if @root_tasks 4 @root_tasks.each do |task| 5 task.status = '0' 6 end 7 end
やりたいこととしては条件に合致したtaskオブジェクトをwhere文で取得し、対象のtaskについてそれぞれ項目statusの値を更新(1→2)に
する・・というものです。
処理を流すと特にエラーは発生しませんが、task.status = '0'の処理が実行されず、後続のステップに実行されてしまいます。
デバッガーでステップ実行してみたところ、
@root_tasks = Task.where(created_user_id: self.id, depth: '0', status: '1')について条件に合致したレコードは
取得できていることは確認できました。が、each文のステップのところで、以下がデバッガーのコンソールには表示されます(恥ずかしながら内容が理解できません)
[83, 92] in /XXXXXXXX/.rbenv/gems/2.7.0/gems/activerecord-6.1.3/lib/active_record/relation/delegation.rb 83: # This module creates compiled delegation methods dynamically at runtime, which makes 84: # subsequent calls to that method faster by avoiding method_missing. The delegations 85: # may vary depending on the klass of a relation, so we create a subclass of Relation 86: # for each different klass, and the delegations are compiled into that subclass only. 87: => 88: delegate :to_xml, :encode_with, :length, :each, :join, 89: :[], :&, :|, :+, :-, :sample, :reverse, :rotate, :compact, :in_groups, :in_groups_of, 90: :to_sentence, :to_formatted_s, :as_json, 91: :shuffle, :split, :slice, :index, :rindex, to: :records
おそらく初歩的なミスだと思いますが何卒よろしくお願いします
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/07/09 04:48