0

我的问题是我想要一个类似的网址,/product/title-1但我只得到/product/1-title!这是我在product.rb 中的代码:

def to_param
  "#{id}-#{title.parameterize}"
end

路线.rb:

resources :products do
  resources :comments
end

我必须改变什么才能得到它?

4

0 回答 0