So I know the distinction between the bang (exclamation mark) and non-bang methods usually is whether the method will modify the object itself or return a separate modified object keeping the original unchanged.
Then while building the User model in chapter 6 of the book, I came across the User.create
method, which creates a new model and saves it to the database in a single step. In Michael Hartl's Ruby on Rails 3 Tutorial, he writes that the User.create!
method "works just like the create
method...except that it raises an ActiveRecord::Record-Invalid exception if the creation fails."
I'm pretty confused. Is the User.create!
method not following Ruby "bang-convention" or am I completely missing something? And if he IS following the convention, how does User.create!
modify self if it is a class method?
question from:
https://stackoverflow.com/questions/6316821/rails-create-and-create-methods-ror-3-tutorial 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…