0
在我的路線Im做:Rails的路由重定向與綁定參數
get 'category/products/:product_hash(/:ref)',
to: redirect('/new_path/products/%{product_hash}%{ref}', status: 301)
get 'new_path/products/:product_hash(/:ref)',
to: 'products#new', as: :new_product, defaults: {ref: 'print'}
它未與%{}裁判工作,它返回:
「鍵{}裁判未找到」
我怎樣才能使這個「ref」在我的重定向的可選參數?
謝謝。
太棒了,它的工作原理!謝謝! –