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

后端 未结 3 1628
臣服心动
臣服心动 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 15:08

    I sort of solved this problem by doing this:

    params.except("method","action","controller")
    

提交回复
热议问题