1

我正在尝试设置一个指向路径的按钮,但我无法弄清楚将路径设置为什么。目前我的设置是这样的:

= button_to "buy" , product_card_path, :method => "get"

但我得到一个错误。

No route matches {:action=>"card", :controller=>"products"}

这是 rake 路由中的路径:

product_card GET   /products/:product_id/card(.:format)    products#card

如何使 button_to 转到需要参数的路径?

4

1 回答 1

4

尝试:

= button_to "buy" , product_card_path(your_product_instance), method: :get

不确定这里是否method: :get有必要。

于 2013-08-14T20:00:53.080 回答