vote up 1 vote down star

When you do map.resources on a model, it generates a bunch of routing helpers:

resource_path(@resource)
resource_url(@resource)
new_resource_url
etc.

What's the difference between using _path and _url? From what I've tried it doesn't seem to make any difference.

flag

1 Answer

vote up 2 vote down check

foo_url includes the domain and protocol. foo_path only outputs the relative path.

>> foo_url(:id => 1)
http://localhost:3000/foo/1

>> foo_path(:id => 1)
/foo/1

Most of the time, you want "_path" but you have the choice.

link|flag
1  
It's really just personal preference. One exception, is if you're building an RSS feed or something that needs the full url, then you should definitely use resource_url() – Bill Turner Oct 5 at 0:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.