11
रेलें: update_attribute बनाम update_attributes
Object.update_attribute(:only_one_field, "Some Value") Object.update_attributes(:field1 => "value", :field2 => "value2", :field3 => "value3") ये दोनों AR को अपडेट करने के लिए स्पष्ट रूप से बताए बिना एक ऑब्जेक्ट को अपडेट करेंगे। रेल एपीआई कहते हैं: update_attribute के लिए एकल विशेषता को अद्यतन करता है और सामान्य सत्यापन प्रक्रिया से गुजरे बिना …