私の問題は、次のような URL が必要なことです/product/title-1
が、/product/1-title
! これがproduct.rbの私のコードです:
def to_param
"#{id}-#{title.parameterize}"
end
ルート.rb:
resources :products do
resources :comments
end
取得するには何を変更する必要がありますか?
私の問題は、次のような URL が必要なことです/product/title-1
が、/product/1-title
! これがproduct.rbの私のコードです:
def to_param
"#{id}-#{title.parameterize}"
end
ルート.rb:
resources :products do
resources :comments
end
取得するには何を変更する必要がありますか?