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.
すべてのリソースにデフォルトのフォーマットを設定するのではなく、すべてのリソースに一度に設定するだけです。これは可能ですか?
でデフォルトのフォーマットを設定するApplicationControllerと、残りのすべてのコントローラーが継承されます。
ApplicationController
#ApplicationController before_filter :set_format def set_format request.format = 'xml' end