0
0

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を毎回表示するのが面倒になったので自動化した

Last updated at Posted at 2019-08-08

#結論
メソッドが動く前にparamsの値を表示する。
application_controller.rbの中に下記のコードを記載すると動きます。
※今回は+αでsessionも表示しています。

app/controllers/application_controller.rb
class ApplicationController < ActionController::Base
  before_filter :check_controller_action
  def check_controller_action
    puts("\e[35msession:#{session}\e[0m")
    puts("\e[35mparams:#{params}\e[0m")
  end
end

#解説
before_filter → 各アクションの前に処理を行う
\e[35m → 文字色を紫に変更
\e[0m  → 文字色を初期状態に変更

before_filterをafter_filterに変更すると、
各アクションの後にparamsを表示してくれます。

#経緯
テストをする際にparamsを確認をするのが面倒に感じました。
なら、メソッドが動くたびに自動表示すれば良いのではとなったのがきっかけです。

もし改良案などあれば、ぜひコメントお願いします。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?