MVC Web Framework
MVC Web Framework
Scaffold
Create
Function Purpose Function Body
New Display the form for a new @user = User.new
User object
create Accepts request data and attempts to @user =
create a new User object User.new(params[:user])
if @user.save
flash[:notice] =
’User was successfully
created.’
redirect_to
user_url(@user)
else
render :action => "new"
end.
ActiveRecord also has a few other neat tricks up its sleeve. Let’s look at some of
them now.(sitepoint)