How do I get only the query string in a Rails route?

后端 未结 3 1690
臣服心动
臣服心动 2021-02-20 14:22

I am using a route like this

match \"/v1/:method\" => \"v1#index\"

My intention here is capture the name of the api method and then send the

3条回答
  •  刺人心
    刺人心 (楼主)
    2021-02-20 14:46

    Stolen from the work of a colleague. I find this a slightly more robust solution, since it will work even if there are changes to the path parameters:

    params.except(*request.path_parameters.keys)
    

提交回复
热议问题