Rails 5.1 Routes: dynamic :action parameters

前端 未结 3 1683
后悔当初
后悔当初 2021-02-05 09:45

Rails 5.0.0.beta4 introduced a deprecation warning on routes containing dynamic :action and :controller segments:

DEPRECATION WARNING: Using a dynamic :action s         


        
3条回答
  •  挽巷
    挽巷 (楼主)
    2021-02-05 10:12

    It works like this:

    get 'stripe(/:action)', controller: 'stripe', action: :action, as: "stripe"
    

提交回复
热议问题