Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
products_path(page: 1)生成 url /products?page=1。
products_path(page: 1)
/products?page=1
怎么生成/products/page/1呢?
/products/page/1
假设我有
resources :products
在routes.rb.
routes.rb
将此添加到 routes.rb:
match "/products/page/:page" => "products#index"
它将在 params 哈希中设置页面参数。