0 votes
in Ruby by

If the only route defined is resources :products, what is an example of a URL that could be generated by this link_to method?

link_to('Link', {controller: 'products', action: 'index', page: 3})

 A.

/products?page=3

 B.

/products/index/3

 C.

/products/page/3

 D.

/products/index/page/3

1 Answer

0 votes
by

If the only route defined is resources :products, what is an example of a URL that could be generated by this link_to method?

link_to('Link', {controller: 'products', action: 'index', page: 3})

Correct answer is :- /products?page=3

Related questions

0 votes
asked Sep 2, 2022 in Ruby by DavidAnderson
0 votes
asked Sep 3, 2022 in Ruby by DavidAnderson
...