LoginSignup
0
0

More than 5 years have passed since last update.

[Rails] ActionController::UnknownFormat エラーとなるときの解決方法

Posted at

事象

ActionController::UnknownFormat in コントローラ名#アクション名
FireShot Capture 063 - Action Controller_ Exception caught - localhost.png

原因

コントローラのアクションに対応するViewファイルが存在しないため。

対応

対応するViewファイル app/views/コントローラ名/アクション名.html.erb を作成する。
今回の場合、 app/views/monthly_orders/show.html.erb を作成してエラーを解消した。

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