我的问题是我想要一个类似的网址,/product/title-1
但我只得到/product/1-title
!这是我在product.rb 中的代码:
def to_param
"#{id}-#{title.parameterize}"
end
路线.rb:
resources :products do
resources :comments
end
我必须改变什么才能得到它?
我的问题是我想要一个类似的网址,/product/title-1
但我只得到/product/1-title
!这是我在product.rb 中的代码:
def to_param
"#{id}-#{title.parameterize}"
end
路线.rb:
resources :products do
resources :comments
end
我必须改变什么才能得到它?