ฉันมีการเชื่อมโยงต่อไปนี้ในแอปของฉัน:
# Page
belongs_to :status
ฉันต้องการที่จะเรียกใช้โทรกลับตลอดเวลาstatus_id
ของpage
มีการเปลี่ยนแปลง
ดังนั้นถ้าpage.status_id
ไปจาก 4 เป็น 5 ฉันอยากจะจับมันได้
ต้องทำอย่างไร?
ฉันมีการเชื่อมโยงต่อไปนี้ในแอปของฉัน:
# Page
belongs_to :status
ฉันต้องการที่จะเรียกใช้โทรกลับตลอดเวลาstatus_id
ของpage
มีการเปลี่ยนแปลง
ดังนั้นถ้าpage.status_id
ไปจาก 4 เป็น 5 ฉันอยากจะจับมันได้
ต้องทำอย่างไร?
คำตอบ:
class Page < ActiveRecord::Base
before_save :do_something, if: :will_save_change_to_status_id?
private
def do_something
# ...
end
end
คอมมิตที่เปลี่ยน ActiveRecord :: Dirty อยู่ที่นี่: https://github.com/rails/rails/commit/16ae3db5a5c6a08383b974ae6c96faac5b4a3c81
นี่คือบล็อกโพสต์เกี่ยวกับการเปลี่ยนแปลงเหล่านี้: https://www.ombulabs.com/blog/rails/upgrades/active-record-5-1-api-changes.html
นี่คือบทสรุปที่ฉันทำด้วยตัวเองเกี่ยวกับการเปลี่ยนแปลง ActiveRecord :: Dirty in Rails 5.1+:
https://api.rubyonrails.org/classes/ActiveRecord/AttributeMethods/Dirty.html
หลังจากแก้ไขอ็อบเจ็กต์และก่อนบันทึกลงในฐานข้อมูลหรือภายในbefore_save
ตัวกรอง:
changes
ตอนนี้ควรจะเป็น changes_to_save
changed?
ตอนนี้ควรจะเป็น has_changes_to_save?
changed
ตอนนี้ควรจะเป็น changed_attribute_names_to_save
<attribute>_change
ตอนนี้ควรจะเป็น <attribute>_change_to_be_saved
<attribute>_changed?
ตอนนี้ควรจะเป็น will_save_change_to_<attribute>?
<attribute>_was
ตอนนี้ควรจะเป็น <attribute>_in_database
หลังจากแก้ไขอ็อบเจ็กต์และหลังจากบันทึกลงในฐานข้อมูลหรือภายในafter_save
ตัวกรอง:
saved_changes
(แทนที่previous_changes
)saved_changes?
saved_change_to_<attribute>
saved_change_to_<attribute>?
<attribute>_before_last_save
class Page < ActiveRecord::Base
before_save :do_something, if: :status_id_changed?
private
def do_something
# ...
end
end
สิ่งนี้ใช้ความจริงที่ว่าการbefore_save
เรียกกลับสามารถดำเนินการตามเงื่อนไขตามค่าส่งคืนของการเรียกใช้เมธอด status_id_changed?
วิธีการมาจากActiveModel :: สกปรกซึ่งช่วยให้เราสามารถตรวจสอบว่าแอตทริบิวต์ที่ระบุมีการเปลี่ยนแปลงโดยเพียงแค่การผนวก_changed?
เข้ากับชื่อแอตทริบิวต์
เมื่อdo_something
ใดควรเรียกวิธีนี้ขึ้นอยู่กับความต้องการของคุณ มันอาจจะเป็นbefore_save
หรือafter_save
หรือใด ๆ ของActiveRecord กำหนด :: Callbacks
attribute_changed?
จะเลิกใน Rails 5.1 will_save_change_to_attribute?
ตอนนี้เพียงแค่ใช้
สำหรับข้อมูลเพิ่มเติมโปรดดูที่ปัญหานี้
ลองทำตามนี้
after_validation :do_something, if: ->(obj){ obj.status_id.present? and obj.status_id_changed? }
def do_something
# your code
end