seja1
(seja)
1
Hi Rails passengers
While doing update i am facing new type of error in rails 2.2.2
Its having params eg) params[:me][:like]
while doing @me.update_attribute(params[:me])
i am getting updated successfully but its not done actually… Not getting any errors in log tooo
How to fix this
Thanks in Advance
Senthil,
if you want to update @me with multiple values from params[:me], you might want to be using update_attributes, not the singular version.
See http://apidock.com/rails/ActiveRecord/Base/update_attribute and http://apidock.com/rails/ActiveRecord/Base/update_attributes for the difference.
James.