Displaying 1 result from an estimated 1 matches for "profile_edit".
2012 Apr 06
3
I can't update data in table
...39;')}
else
format.html { render action: "index" }
end
end
end
...........
In Route ...
match "/profile/:id" => "profile#index", :as => :profile
match "/profile/:id/edit" => "profile#edit", :as => :profile_edit
put ''/profile/:id'' => "profile#update" ## method = put for update
...............
In Model - update data be saved in user table.
.................
But I can''t update data . In rails server screen , I see the edit
process.I can''t see update proce...