when i read the book "Aglie web development with rails 4th",i found the code

<%= button_to 'Add to Cart', line_items_path(:product_id => product) %>

what's the difference if i use "line_items_url" and the code doesn't has the method like :method=>:post,

why?

link|improve this question

67% accept rate
feedback

2 Answers

up vote 3 down vote accepted

The path version produces relative urls such as /order/34/lines/ while the url version produces a full url such as http://localhost:3000/order/34/lines/.

The second form is often used in mailers when the user click a link in a mail client or in an external webmail.

In your site you won't notice any difference.

Moreover the :method=>:post option will produce a post request to your webserver. It will do that by adding a javascript code which will create a form on the fly, add parameters to it and do a submit call to send your browser to the requested page with a post method.

link|improve this answer
very helpful! thanks! – YuLong Aug 26 '11 at 14:10
@YuLong you're welcome. You should accept the answer if you found useful to solve your problem. – Fabio Aug 26 '11 at 14:19
feedback

The _url helper generates an URL that includes the protocol and host name. The _path helper generates only the path portion.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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