10
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[rails] パラメータ取得方法 params, query_paramters, path_parameters

Last updated at Posted at 2018-12-27

URLのgetパラメーターの有無を調べたかったのですが、こちらを使いました。↓

request.query_parameters.any?

何をするかと言うと

/hoge/categories/7?color=RED

color=REDをハッシュで取ってきてくれます。

こんな感じで使いました。↓

if request.query_parameters.any?
  @hogehoge = "fizz"
else
  @hogehoge = "vazz"
end

ついでに他のメソッド

&で繋がっていてもそのまま取ってきてくれます。

/categories/12?size=S&color=RED
{"size"=>"S", "color"=>"RED", "action"=>"show", "id"=>"12", "controller"=>"categories"}    # params
{"size"=>"S", "color"=>"RED"}                                 # request.query_parameters
{"action"=>"show", "id"=>"12", "controller"=>"categories"}  # request.path_parameters
Parameters: {"size"=>"S", "color"=>"RED", "id"=>"12"}       # log に出力されるやつ

最後に

link_to "次", next_path(request.query_parameters)

という使い方もできます。

10
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?