i have seen one* link_to* function, but i didn’t get the path flow.
which
written in that function. PLZ any one clear dat function
<%= link_to “Loyalty Report”, report_listing_path(@listing , :format =>
“csv”) unless @listing.parent %>
*
*
*
*
Thank you
vishnu
amvis
December 7, 2011, 11:37am
#2
On Wed, Dec 7, 2011 at 7:26 AM, amvis [email protected] id wrote:
i have seen one link_to function, but i didn’t get the path flow. which
written in that function. PLZ any one clear dat function
<%= link_to “Loyalty Report”, report_listing_path(@listing , :format =>
“csv”) unless @listing.parent %>
What exactly you don’t get?
Have you seen the generated HTML for this?
The report_listing_path is a resource’s route helper function. If this
is what you don’t understand, you should take a look at
http://guides.rubyonrails.org/routing.html
Hope it helps.
Cheers.
–
Leonardo M…
There’s no place like ~
amvis
December 9, 2011, 6:05am
#3
i have look this http://guides.rubyonrails.org/routing.html . but i
didn’t
get one thing…
lets take one example * <%= link_to “Loyalty Report”,
report_listing_path(@listing , :format => “csv”) . *so what i am seeing
the
above link is
new_photo_path returns /photos/new.so if it like dis the **
report_listing_path
will return listing/report…is ti correct?
*
*
Thank You
vishnu
amvis
December 9, 2011, 2:06pm
#4
"report_listing_path will return the path to whatever route you have
defined as “report_listing”
You can run “rake routes” from the command line to see which routes you
have configured in your application.