SlideShare ist ein Scribd-Unternehmen logo
1 von 39
Routing
2 purposes of Routing
2 purposes of Routing
1) maps Requests to Controller Action methods
2) generation of URLs
●

To be used as arguments to methods like
link_to, redirect_to
1.) Mapping HTTP Requests to
Controller-Actions
Lifecycle of a HTTP Request
routes.rb
●

config/routes.rb
●

specify 'Routing Rules' a.k.a 'Routes' here

●

Order is important
Rules are applied in the order in which they
appear

●

To list all routes:
rake routes

●

To filter routes :
routes.rb (contd.)
NOTE
●

Whatever URLs have to work, have to be
EXPLICITLY specified in routes.rb
–

Unless the .html file exists in “public” folder

i.e. Even if we create Controller, ControllerAction, View →
if there is no route for the URL in routes.rb, then
that URL will NOT work
routes.rb (contd.)
●

A website may have many, many, URLs that
need to work…
so,
how to specify all of them in routes.rb ?

●

In routes.rb, when we create 'routing rules', we
can specify patterns for permitted URLs
(Next few slides talk about the Syntax used for
specifying those 'routing rules')
Legacy way that does Not work
●

Legacy way of supplying controller and action
parameters prior to Rails 3 does not work
anymore
# DOES NOT WORK
match 'products/:id', :controller => “product”, :action =>
“show”
Regular Syntax
●

Regular syntax
●

●

use :to

match [URL Pattern],

:to => Controller#Action

E.g.
match 'products/:id', :to => 'products#show'
ShortCut – drop “:to”
●

Full Syntax
match 'products/:id' , :to => 'products#show'

●

Shortcut
match 'products/:id' => 'products#show'

We can drop - , :to
Another Shortcut Syntax –
when path already has controller &
action names
●

Full Syntax
match “/projects/status”, :to => “projects#status”

●

Shortcut
match “/projects/status”
●

“projects” controller

●

“status” action
Constraining Request Methods
and Shortcut
●

To limit the HTTP method :via parameter
match 'products/show', :to => 'products#show', :via

●

Shortcut:
get “/products/show”

=> :get
Segment Keys
●

match 'recipes/:ingredient' => “recipes#index”

“:ingredient” – segment key
http://example.com/recipes/biryani
In Controller code:
we can get “biryani” from
params[:ingredient]
Passing additional parameters via
segment keys
●

Possible to insert additional hardcoded parameters
into route definitions
match 'products/special' => 'products#show',

true
●

Accessed in Controller code via
●

params[:special]

:special =>
Optional Segment Keys
●

Parentheses are used to define optional
segment keys
match ':controller(/:action(/:id(.:format)))
Segment Key Constraints
match 'products/:id' => 'products#show', :constraints => {:id

=> /d+/}

Shortcut:
match 'products/:id' => 'products#show', :id => /d+/
Segment Key Constraints
- More Powerful constraints checking
●

For more powerful constraints checking
–

We can pass a 'block' to “:constraints”
Redirect Routes
●

Possible to redirect using the redirect method
match “/google”, :to => redirect(“http://google.com/”)
Route Globbing
●

To grab more than 1 component
●

●

Use *

E.g.
/items/list/base/books/fiction/dickens
match 'items/list/*specs' => 'items#list'

●

In Controller code -

params[:specs]
2.) Generating URLs
Generating URLs
●

Original way (and simplest to understand) to
generate a URL ●

we have to supply values for the segment keys
using a Hash

Example :
link_to “Products”,
:controller => “products”,
:action => “show”,
:id => @product.id
Generating URLs (contd.)
●

More common way nowadays
●

using Named Routes
Named Routes
●

Created using :as parameter in a rule

●

Example:
match “item/:id” => “items#show”, :as => “item”
Named Routes – Behind the scenes
●

What actually happens when we name a route ?
2 New methods get defined
–

<name>_url , <name>_path

Example :
match “item/:id” => “items#show”, :as => “item ”
→ above line creates 2 new methods
●

●

item_path, item_url

These methods are used with link_to
●

to Generate Urls
Example
●

Scenario:
Suppose we have a Auction Site , and have Items
data
Goal - To display details of a particular Item

●

Starting Point
In routes.rb, we will already have
match “item/:id” => “items#show”
Example contd.
●

In the View (i.e .html.erb file) link_to “Auction of #{item.name}”,
:controller => “items”,
:action => “show”,
:id => item.id

How can the above code be improved by using
Named Routes ?
Example contd.
Let us make the following change in routes.rb
●

Original Route match “item/:id” => “items#show”

●

Append :as parameter to create Named Route match “item/:id” => “items#show”, :as => “item”
Example contd.
View code will change as follows:
●

Original “link_to” statement
link_to “Auction of #{item.name}”,
:controller => “items”,
:action => “show”,
:id => @item.id

●

Using named route
link_to “Auction of #{item.name}”,
item_path (:id => @item.id)
Shortcuts when using Named Routes
●

The Named route we created can further be
shortened :
FROM

link_to “Auction of #{item.name}”, item_path (:id =>
@item.id)
TO
Rails - “id” is default parameter, so we can drop “id”
wherever possible
link_to “Auction of #{item.name}”, item_path (@item.id)
link_to “Auction of #{item.name}”, item_path (@item)
More complicated Named Routes
●

Many Auctions and each Auction has Many
Items URL of Item details page /auction/5/item/1

●

Starting Point
We will probably already have
match “auction/:auction_id/item/:id” =>
“items#show”
More complicated Named Routes
(contd.)
●

Let us create a named route
by using :as
match “auction/:auction_id/item/:id” =>
“items#show” , :as => “item”
●

“link_to” statement changes
FROM:
link_to “Auction of #{item.name}”,
:controller => “items”,
:action => “show”,
:auction_id => @auction.id,
:id => @item.id
TO
link_to “Auction of #{item.name}”,
RESTful “resources” & Named Routes
●

resources :auctions
Above line in routes.rb creates 7 Routes out of
which 4 are Named Routes
RESTful “resources” & Named Routes
(contd.)
●

resources :auctions
resources :items
end
Scoping Routing Rules
“public” folder and Routing
Root route & “public” folder
●

In a newly generated Rails application
–

In routes.rb ●

–

root route is commented out

How is a page shown for the root URL ?
http://localhost:3000/
Root Route (contd.)
“public” folder
●

http://localhost:3000
=
http://localhost:3000/index.html

●

“public” folder in the root of our application
<=> root-level URL

●

That folder contains a “index.html”
“public” folder
●

Files in this folder will be scanned before
looking at of routing rules
●

Static content is usually put here

●

Cached content will be placed here

Weitere ähnliche Inhalte

Ähnlich wie Rails training presentation routing

Learning to code for startup mvp session 3
Learning to code for startup mvp session 3Learning to code for startup mvp session 3
Learning to code for startup mvp session 3Henry S
 
Murach : HOW to work with controllers and routing
Murach : HOW to work with controllers and routingMurach : HOW to work with controllers and routing
Murach : HOW to work with controllers and routingMahmoudOHassouna
 
Angular 2 at solutions.hamburg
Angular 2 at solutions.hamburgAngular 2 at solutions.hamburg
Angular 2 at solutions.hamburgBaqend
 
Building an Angular 2 App
Building an Angular 2 AppBuilding an Angular 2 App
Building an Angular 2 AppFelix Gessert
 
RoR 101: Session 2
RoR 101: Session 2RoR 101: Session 2
RoR 101: Session 2Rory Gianni
 
AngularJS Fundamentals + WebAPI
AngularJS Fundamentals + WebAPIAngularJS Fundamentals + WebAPI
AngularJS Fundamentals + WebAPIEric Wise
 
Modern Perl Web Development with Dancer
Modern Perl Web Development with DancerModern Perl Web Development with Dancer
Modern Perl Web Development with DancerDave Cross
 
Routing & Navigating Pages in Angular 2
Routing & Navigating Pages in Angular 2Routing & Navigating Pages in Angular 2
Routing & Navigating Pages in Angular 2Knoldus Inc.
 
Routing in NEXTJS.pdf
Routing in NEXTJS.pdfRouting in NEXTJS.pdf
Routing in NEXTJS.pdfAnishaDahal5
 
Http programming in play
Http programming in playHttp programming in play
Http programming in playKnoldus Inc.
 
Ruby on Rails + AngularJS + Twitter Bootstrap
Ruby on Rails + AngularJS + Twitter BootstrapRuby on Rails + AngularJS + Twitter Bootstrap
Ruby on Rails + AngularJS + Twitter BootstrapMarcio Marinho
 
Building A Website - URLs and routing
Building A Website - URLs and routingBuilding A Website - URLs and routing
Building A Website - URLs and routingRahulRaj965986
 
ASP.NET Routing & MVC
ASP.NET Routing & MVCASP.NET Routing & MVC
ASP.NET Routing & MVCEmad Alashi
 

Ähnlich wie Rails training presentation routing (20)

Learning to code for startup mvp session 3
Learning to code for startup mvp session 3Learning to code for startup mvp session 3
Learning to code for startup mvp session 3
 
Angularjs
AngularjsAngularjs
Angularjs
 
Murach : HOW to work with controllers and routing
Murach : HOW to work with controllers and routingMurach : HOW to work with controllers and routing
Murach : HOW to work with controllers and routing
 
Angular 2 at solutions.hamburg
Angular 2 at solutions.hamburgAngular 2 at solutions.hamburg
Angular 2 at solutions.hamburg
 
Chapter5.pptx
Chapter5.pptxChapter5.pptx
Chapter5.pptx
 
Building an Angular 2 App
Building an Angular 2 AppBuilding an Angular 2 App
Building an Angular 2 App
 
RoR 101: Session 2
RoR 101: Session 2RoR 101: Session 2
RoR 101: Session 2
 
AngularJS Fundamentals + WebAPI
AngularJS Fundamentals + WebAPIAngularJS Fundamentals + WebAPI
AngularJS Fundamentals + WebAPI
 
Modern Perl Web Development with Dancer
Modern Perl Web Development with DancerModern Perl Web Development with Dancer
Modern Perl Web Development with Dancer
 
Routing & Navigating Pages in Angular 2
Routing & Navigating Pages in Angular 2Routing & Navigating Pages in Angular 2
Routing & Navigating Pages in Angular 2
 
Angular2 routing
Angular2 routingAngular2 routing
Angular2 routing
 
Rails::Engine
Rails::EngineRails::Engine
Rails::Engine
 
Routing in NEXTJS.pdf
Routing in NEXTJS.pdfRouting in NEXTJS.pdf
Routing in NEXTJS.pdf
 
Http programming in play
Http programming in playHttp programming in play
Http programming in play
 
GHC
GHCGHC
GHC
 
Ruby on Rails + AngularJS + Twitter Bootstrap
Ruby on Rails + AngularJS + Twitter BootstrapRuby on Rails + AngularJS + Twitter Bootstrap
Ruby on Rails + AngularJS + Twitter Bootstrap
 
Building A Website - URLs and routing
Building A Website - URLs and routingBuilding A Website - URLs and routing
Building A Website - URLs and routing
 
ASP.NET Routing & MVC
ASP.NET Routing & MVCASP.NET Routing & MVC
ASP.NET Routing & MVC
 
Meteor iron:router
Meteor iron:routerMeteor iron:router
Meteor iron:router
 
Directives
DirectivesDirectives
Directives
 

Kürzlich hochgeladen

20200128 Ethical by Design - Whitepaper.pdf
20200128 Ethical by Design - Whitepaper.pdf20200128 Ethical by Design - Whitepaper.pdf
20200128 Ethical by Design - Whitepaper.pdfChris Skinner
 
Entrepreneurship lessons in Philippines
Entrepreneurship lessons in  PhilippinesEntrepreneurship lessons in  Philippines
Entrepreneurship lessons in PhilippinesDavidSamuel525586
 
Cyber Security Training in Office Environment
Cyber Security Training in Office EnvironmentCyber Security Training in Office Environment
Cyber Security Training in Office Environmentelijahj01012
 
Driving Business Impact for PMs with Jon Harmer
Driving Business Impact for PMs with Jon HarmerDriving Business Impact for PMs with Jon Harmer
Driving Business Impact for PMs with Jon HarmerAggregage
 
Welding Electrode Making Machine By Deccan Dynamics
Welding Electrode Making Machine By Deccan DynamicsWelding Electrode Making Machine By Deccan Dynamics
Welding Electrode Making Machine By Deccan DynamicsIndiaMART InterMESH Limited
 
PSCC - Capability Statement Presentation
PSCC - Capability Statement PresentationPSCC - Capability Statement Presentation
PSCC - Capability Statement PresentationAnamaria Contreras
 
Introducing the Analogic framework for business planning applications
Introducing the Analogic framework for business planning applicationsIntroducing the Analogic framework for business planning applications
Introducing the Analogic framework for business planning applicationsKnowledgeSeed
 
APRIL2024_UKRAINE_xml_0000000000000 .pdf
APRIL2024_UKRAINE_xml_0000000000000 .pdfAPRIL2024_UKRAINE_xml_0000000000000 .pdf
APRIL2024_UKRAINE_xml_0000000000000 .pdfRbc Rbcua
 
1911 Gold Corporate Presentation Apr 2024.pdf
1911 Gold Corporate Presentation Apr 2024.pdf1911 Gold Corporate Presentation Apr 2024.pdf
1911 Gold Corporate Presentation Apr 2024.pdfShaun Heinrichs
 
How Generative AI Is Transforming Your Business | Byond Growth Insights | Apr...
How Generative AI Is Transforming Your Business | Byond Growth Insights | Apr...How Generative AI Is Transforming Your Business | Byond Growth Insights | Apr...
How Generative AI Is Transforming Your Business | Byond Growth Insights | Apr...Hector Del Castillo, CPM, CPMM
 
Send Files | Sendbig.comSend Files | Sendbig.com
Send Files | Sendbig.comSend Files | Sendbig.comSend Files | Sendbig.comSend Files | Sendbig.com
Send Files | Sendbig.comSend Files | Sendbig.comSendBig4
 
Traction part 2 - EOS Model JAX Bridges.
Traction part 2 - EOS Model JAX Bridges.Traction part 2 - EOS Model JAX Bridges.
Traction part 2 - EOS Model JAX Bridges.Anamaria Contreras
 
trending-flavors-and-ingredients-in-salty-snacks-us-2024_Redacted-V2.pdf
trending-flavors-and-ingredients-in-salty-snacks-us-2024_Redacted-V2.pdftrending-flavors-and-ingredients-in-salty-snacks-us-2024_Redacted-V2.pdf
trending-flavors-and-ingredients-in-salty-snacks-us-2024_Redacted-V2.pdfMintel Group
 
Effective Strategies for Maximizing Your Profit When Selling Gold Jewelry
Effective Strategies for Maximizing Your Profit When Selling Gold JewelryEffective Strategies for Maximizing Your Profit When Selling Gold Jewelry
Effective Strategies for Maximizing Your Profit When Selling Gold JewelryWhittensFineJewelry1
 
Lucia Ferretti, Lead Business Designer; Matteo Meschini, Business Designer @T...
Lucia Ferretti, Lead Business Designer; Matteo Meschini, Business Designer @T...Lucia Ferretti, Lead Business Designer; Matteo Meschini, Business Designer @T...
Lucia Ferretti, Lead Business Designer; Matteo Meschini, Business Designer @T...Associazione Digital Days
 
20220816-EthicsGrade_Scorecard-JP_Morgan_Chase-Q2-63_57.pdf
20220816-EthicsGrade_Scorecard-JP_Morgan_Chase-Q2-63_57.pdf20220816-EthicsGrade_Scorecard-JP_Morgan_Chase-Q2-63_57.pdf
20220816-EthicsGrade_Scorecard-JP_Morgan_Chase-Q2-63_57.pdfChris Skinner
 
NAB Show Exhibitor List 2024 - Exhibitors Data
NAB Show Exhibitor List 2024 - Exhibitors DataNAB Show Exhibitor List 2024 - Exhibitors Data
NAB Show Exhibitor List 2024 - Exhibitors DataExhibitors Data
 
TriStar Gold Corporate Presentation - April 2024
TriStar Gold Corporate Presentation - April 2024TriStar Gold Corporate Presentation - April 2024
TriStar Gold Corporate Presentation - April 2024Adnet Communications
 

Kürzlich hochgeladen (20)

The Bizz Quiz-E-Summit-E-Cell-IITPatna.pptx
The Bizz Quiz-E-Summit-E-Cell-IITPatna.pptxThe Bizz Quiz-E-Summit-E-Cell-IITPatna.pptx
The Bizz Quiz-E-Summit-E-Cell-IITPatna.pptx
 
20200128 Ethical by Design - Whitepaper.pdf
20200128 Ethical by Design - Whitepaper.pdf20200128 Ethical by Design - Whitepaper.pdf
20200128 Ethical by Design - Whitepaper.pdf
 
Entrepreneurship lessons in Philippines
Entrepreneurship lessons in  PhilippinesEntrepreneurship lessons in  Philippines
Entrepreneurship lessons in Philippines
 
Cyber Security Training in Office Environment
Cyber Security Training in Office EnvironmentCyber Security Training in Office Environment
Cyber Security Training in Office Environment
 
Driving Business Impact for PMs with Jon Harmer
Driving Business Impact for PMs with Jon HarmerDriving Business Impact for PMs with Jon Harmer
Driving Business Impact for PMs with Jon Harmer
 
Welding Electrode Making Machine By Deccan Dynamics
Welding Electrode Making Machine By Deccan DynamicsWelding Electrode Making Machine By Deccan Dynamics
Welding Electrode Making Machine By Deccan Dynamics
 
PSCC - Capability Statement Presentation
PSCC - Capability Statement PresentationPSCC - Capability Statement Presentation
PSCC - Capability Statement Presentation
 
Introducing the Analogic framework for business planning applications
Introducing the Analogic framework for business planning applicationsIntroducing the Analogic framework for business planning applications
Introducing the Analogic framework for business planning applications
 
APRIL2024_UKRAINE_xml_0000000000000 .pdf
APRIL2024_UKRAINE_xml_0000000000000 .pdfAPRIL2024_UKRAINE_xml_0000000000000 .pdf
APRIL2024_UKRAINE_xml_0000000000000 .pdf
 
WAM Corporate Presentation April 12 2024.pdf
WAM Corporate Presentation April 12 2024.pdfWAM Corporate Presentation April 12 2024.pdf
WAM Corporate Presentation April 12 2024.pdf
 
1911 Gold Corporate Presentation Apr 2024.pdf
1911 Gold Corporate Presentation Apr 2024.pdf1911 Gold Corporate Presentation Apr 2024.pdf
1911 Gold Corporate Presentation Apr 2024.pdf
 
How Generative AI Is Transforming Your Business | Byond Growth Insights | Apr...
How Generative AI Is Transforming Your Business | Byond Growth Insights | Apr...How Generative AI Is Transforming Your Business | Byond Growth Insights | Apr...
How Generative AI Is Transforming Your Business | Byond Growth Insights | Apr...
 
Send Files | Sendbig.comSend Files | Sendbig.com
Send Files | Sendbig.comSend Files | Sendbig.comSend Files | Sendbig.comSend Files | Sendbig.com
Send Files | Sendbig.comSend Files | Sendbig.com
 
Traction part 2 - EOS Model JAX Bridges.
Traction part 2 - EOS Model JAX Bridges.Traction part 2 - EOS Model JAX Bridges.
Traction part 2 - EOS Model JAX Bridges.
 
trending-flavors-and-ingredients-in-salty-snacks-us-2024_Redacted-V2.pdf
trending-flavors-and-ingredients-in-salty-snacks-us-2024_Redacted-V2.pdftrending-flavors-and-ingredients-in-salty-snacks-us-2024_Redacted-V2.pdf
trending-flavors-and-ingredients-in-salty-snacks-us-2024_Redacted-V2.pdf
 
Effective Strategies for Maximizing Your Profit When Selling Gold Jewelry
Effective Strategies for Maximizing Your Profit When Selling Gold JewelryEffective Strategies for Maximizing Your Profit When Selling Gold Jewelry
Effective Strategies for Maximizing Your Profit When Selling Gold Jewelry
 
Lucia Ferretti, Lead Business Designer; Matteo Meschini, Business Designer @T...
Lucia Ferretti, Lead Business Designer; Matteo Meschini, Business Designer @T...Lucia Ferretti, Lead Business Designer; Matteo Meschini, Business Designer @T...
Lucia Ferretti, Lead Business Designer; Matteo Meschini, Business Designer @T...
 
20220816-EthicsGrade_Scorecard-JP_Morgan_Chase-Q2-63_57.pdf
20220816-EthicsGrade_Scorecard-JP_Morgan_Chase-Q2-63_57.pdf20220816-EthicsGrade_Scorecard-JP_Morgan_Chase-Q2-63_57.pdf
20220816-EthicsGrade_Scorecard-JP_Morgan_Chase-Q2-63_57.pdf
 
NAB Show Exhibitor List 2024 - Exhibitors Data
NAB Show Exhibitor List 2024 - Exhibitors DataNAB Show Exhibitor List 2024 - Exhibitors Data
NAB Show Exhibitor List 2024 - Exhibitors Data
 
TriStar Gold Corporate Presentation - April 2024
TriStar Gold Corporate Presentation - April 2024TriStar Gold Corporate Presentation - April 2024
TriStar Gold Corporate Presentation - April 2024
 

Rails training presentation routing

  • 2. 2 purposes of Routing 2 purposes of Routing 1) maps Requests to Controller Action methods 2) generation of URLs ● To be used as arguments to methods like link_to, redirect_to
  • 3. 1.) Mapping HTTP Requests to Controller-Actions
  • 4. Lifecycle of a HTTP Request
  • 5. routes.rb ● config/routes.rb ● specify 'Routing Rules' a.k.a 'Routes' here ● Order is important Rules are applied in the order in which they appear ● To list all routes: rake routes ● To filter routes :
  • 6. routes.rb (contd.) NOTE ● Whatever URLs have to work, have to be EXPLICITLY specified in routes.rb – Unless the .html file exists in “public” folder i.e. Even if we create Controller, ControllerAction, View → if there is no route for the URL in routes.rb, then that URL will NOT work
  • 7. routes.rb (contd.) ● A website may have many, many, URLs that need to work… so, how to specify all of them in routes.rb ? ● In routes.rb, when we create 'routing rules', we can specify patterns for permitted URLs (Next few slides talk about the Syntax used for specifying those 'routing rules')
  • 8. Legacy way that does Not work ● Legacy way of supplying controller and action parameters prior to Rails 3 does not work anymore # DOES NOT WORK match 'products/:id', :controller => “product”, :action => “show”
  • 9. Regular Syntax ● Regular syntax ● ● use :to match [URL Pattern], :to => Controller#Action E.g. match 'products/:id', :to => 'products#show'
  • 10. ShortCut – drop “:to” ● Full Syntax match 'products/:id' , :to => 'products#show' ● Shortcut match 'products/:id' => 'products#show' We can drop - , :to
  • 11. Another Shortcut Syntax – when path already has controller & action names ● Full Syntax match “/projects/status”, :to => “projects#status” ● Shortcut match “/projects/status” ● “projects” controller ● “status” action
  • 12. Constraining Request Methods and Shortcut ● To limit the HTTP method :via parameter match 'products/show', :to => 'products#show', :via ● Shortcut: get “/products/show” => :get
  • 13. Segment Keys ● match 'recipes/:ingredient' => “recipes#index” “:ingredient” – segment key http://example.com/recipes/biryani In Controller code: we can get “biryani” from params[:ingredient]
  • 14. Passing additional parameters via segment keys ● Possible to insert additional hardcoded parameters into route definitions match 'products/special' => 'products#show', true ● Accessed in Controller code via ● params[:special] :special =>
  • 15. Optional Segment Keys ● Parentheses are used to define optional segment keys match ':controller(/:action(/:id(.:format)))
  • 16. Segment Key Constraints match 'products/:id' => 'products#show', :constraints => {:id => /d+/} Shortcut: match 'products/:id' => 'products#show', :id => /d+/
  • 17. Segment Key Constraints - More Powerful constraints checking ● For more powerful constraints checking – We can pass a 'block' to “:constraints”
  • 18. Redirect Routes ● Possible to redirect using the redirect method match “/google”, :to => redirect(“http://google.com/”)
  • 19. Route Globbing ● To grab more than 1 component ● ● Use * E.g. /items/list/base/books/fiction/dickens match 'items/list/*specs' => 'items#list' ● In Controller code - params[:specs]
  • 21. Generating URLs ● Original way (and simplest to understand) to generate a URL ● we have to supply values for the segment keys using a Hash Example : link_to “Products”, :controller => “products”, :action => “show”, :id => @product.id
  • 22. Generating URLs (contd.) ● More common way nowadays ● using Named Routes
  • 23. Named Routes ● Created using :as parameter in a rule ● Example: match “item/:id” => “items#show”, :as => “item”
  • 24. Named Routes – Behind the scenes ● What actually happens when we name a route ? 2 New methods get defined – <name>_url , <name>_path Example : match “item/:id” => “items#show”, :as => “item ” → above line creates 2 new methods ● ● item_path, item_url These methods are used with link_to ● to Generate Urls
  • 25. Example ● Scenario: Suppose we have a Auction Site , and have Items data Goal - To display details of a particular Item ● Starting Point In routes.rb, we will already have match “item/:id” => “items#show”
  • 26. Example contd. ● In the View (i.e .html.erb file) link_to “Auction of #{item.name}”, :controller => “items”, :action => “show”, :id => item.id How can the above code be improved by using Named Routes ?
  • 27. Example contd. Let us make the following change in routes.rb ● Original Route match “item/:id” => “items#show” ● Append :as parameter to create Named Route match “item/:id” => “items#show”, :as => “item”
  • 28. Example contd. View code will change as follows: ● Original “link_to” statement link_to “Auction of #{item.name}”, :controller => “items”, :action => “show”, :id => @item.id ● Using named route link_to “Auction of #{item.name}”, item_path (:id => @item.id)
  • 29. Shortcuts when using Named Routes ● The Named route we created can further be shortened : FROM link_to “Auction of #{item.name}”, item_path (:id => @item.id) TO Rails - “id” is default parameter, so we can drop “id” wherever possible link_to “Auction of #{item.name}”, item_path (@item.id) link_to “Auction of #{item.name}”, item_path (@item)
  • 30. More complicated Named Routes ● Many Auctions and each Auction has Many Items URL of Item details page /auction/5/item/1 ● Starting Point We will probably already have match “auction/:auction_id/item/:id” => “items#show”
  • 31. More complicated Named Routes (contd.) ● Let us create a named route by using :as match “auction/:auction_id/item/:id” => “items#show” , :as => “item”
  • 32. ● “link_to” statement changes FROM: link_to “Auction of #{item.name}”, :controller => “items”, :action => “show”, :auction_id => @auction.id, :id => @item.id TO link_to “Auction of #{item.name}”,
  • 33. RESTful “resources” & Named Routes ● resources :auctions Above line in routes.rb creates 7 Routes out of which 4 are Named Routes
  • 34. RESTful “resources” & Named Routes (contd.) ● resources :auctions resources :items end
  • 37. Root route & “public” folder ● In a newly generated Rails application – In routes.rb ● – root route is commented out How is a page shown for the root URL ? http://localhost:3000/
  • 38. Root Route (contd.) “public” folder ● http://localhost:3000 = http://localhost:3000/index.html ● “public” folder in the root of our application <=> root-level URL ● That folder contains a “index.html”
  • 39. “public” folder ● Files in this folder will be scanned before looking at of routing rules ● Static content is usually put here ● Cached content will be placed here