Routing
Overriding Named Route Parameters in Rails
Rails will use :id
as the default parameter in resourceful routes.
Populating form values through a link in Rails
Today I was asked to help with creating a link on a website that should take the user to a different page where a form should be filled out based on paramaters supplied through the link URL.
Keeping your routes RESTful
A while ago I blogged about RESTful routing in Rails. While Rails does help us in getting started with RESTful routing, it’s still very easy to lose your way and make a real mess of your routes.
RESTful Routing in Rails 3
This post deals with generating RESTful routes in Rails 3. If you want to look at the basics of routing (which also helps in understanding RESTful routes), take a look at Routing in Rails 3.
Routing in Rails 3
This post deals with the basics of routing in Rails 3. If you want to look at the more advanced RESTful routing, take a look at RESTful Routing in Rails 3.