何らかの理由で私はなぜこのエラーが発生するのかわかりません。新鮮なログでは8回表示されますが、これは非常に奇妙です。テンプレートエラーがありません - レイアウトが存在する場合
私はローカルにセットアップした実稼働環境でWEBrickを実行しています。しかし、AWSでPumaを実行している私の実際のプロダクション環境で同じエラーが発生します。
ruby 2.1.4p265
rails 4.2.7.1
スタックトレース
Error during failsafe response: Missing template errors/internal_server_error,
application/internal_server_error with {:locale=>[:en], :formats=>[:png], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
* "~/Rails/ReturnLabel/return_label/app/views"
* "~/.rvm/gems/[email protected]_disposition/gems/devise-3.5.5/app/views"
アプリ/ビュー/エラー
$ ls app/views/errors/
./ _error.html.erb internal_server_error.html.erb no_label.html.erb unsupported_country.html.erb
../ expired_order.html.erb invalid.html.erb not_found.html.erb
errors_controller.rb
class ErrorsController < ApplicationController
def expired_order
@error = :expired_order
render(status: 503)
end
def unsupported_country
@error = :unsupported_country
render(status: 503)
end
def invalid
@error = :invalid
render(status: 400)
end
def not_found
@error = :not_found
render(status: 404)
end
def internal_server_error
@error = :internal_server_error
render(status: 500)
end
def no_label
@error = :no_label
render(status: 503)
end
end
routes.rbを
match '/404', to: 'errors#not_found', as: 'not_found', via: :all
match '/500', to: 'errors#internal_server_error', as: 'internal_server_error', via: :all
match '/unsupported_country', to: 'errors#unsupported_country', via: :all
match '/expired_order', to: 'errors#expired_order', via: :all
match '/invalid', to: 'errors#invalid', via: :all
match '/no_label', to: 'errors#no_label', via: :all
...
# END OF FILE
match '*path', to: 'errors#not_found', via: :all
ビューコード
internal_server_error.html.erb
<header class="header-span-single-line styled">
<div class="text-center animated shake">
<span><%= t('error.header.title') %></span>
<br>
</div>
</header>
<div class="container animated bounceInUp">
<div class="jumbotron">
<div class="container">
<%= render 'error' %>
</div>
</div>
</div>
_error.html.erb
<% error_text = t("error.#{@error}") %>
<h1><%= error_text[:title] %></h1>
<p class="text-white"><%= error_text[:body] %></p>
<hr/>
<p><strong><%= t('error.contact.title') %></strong></p>
<ul class="list-padding">
<li class="list-unstyled">
<p class="cs-p"><%= t('error.contact.phone') %></p>
</li>
<li class="list-unstyled">
<p class="cs-p"><%= t('error.contact.email.title') %>
<a class="branded-link branded-link-dark" target="_blank" href="<%= t('error.contact.email.href') %>"><%= t('error.contact.email.value') %></a>
</p>
</li>
</ul>
<%= link_to t('error.button'), :root, :class => 'btn btn-warning btn-lg btn-dark' %>
ここで行うのは他に何わかりません。私は何が欠けていますか?
好奇心が強い、なぜフォーマットが 'png'ですか? – dubadub
正直言って私は分かりません! –
これはどこかのビューでレンダリングされていますか?あなたはそれに呼んでいるビューコードを投稿できますか?また、以前は動作しましたが、今は壊れていますか? –