I am using Ruby on Rails 3 a开发者_如何学Gond I would like to know what type of return will have the following code:
@user.destroy
I need that to handle cases on success and fault in someway like this:
if @user.destroy
puts "True"
else
puts "false"
end
Is it possible? If so, how?
You should try what you're asking before asking. What you've got there will work just fine.
If the destroy works, it will return the object (which will pass as true in an if statement) and if not, it will return false or raise an exception, depending on why it failed.
It's possible. The destroy method returns the object that was destroyed;
you could use destroyed?
on this ActiveRecord object to check if the object is effectively destroyed:
if @user.destroyed?
puts "True"
else
puts "false"
end
精彩评论