Rails controller create action difference between Model.new and Model.create
问题 I'm going through a few Rails 3 and 4 tutorial and come across something I would love some insights on: What is the difference between the Model.new and Model.create in regards to the Create action. I thought you do use the create method in the controller for saving eg. @post = Post.create(params[:post]) but it looks like I'm mistaken. Any insight is much appreciated. Create action using Post.new def new @post = Post.new end def create @post = Post.new(post_params) @post.save redirect_to post