Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
コントローラーの1つにafter_filterがあり、応答ステータスコードが200の場合にのみ実行します。それ以外の場合は、スキップします。それは可能ですか?
すばやく簡単な方法は、次のafter_filterように条件を設定することです。
after_filter
after_filter :do_something def do_something if response.code == '200' # do something end end