0
我在加載圖像時遇到了路由錯誤,而有些丟失了。Rescue_from不能正常工作
你知道我只是想用默認的圖像圖標替換缺失的圖像,並抑制錯誤信息。
所以,我想
class ImagesController < ApplicationController
[...]
def index
images = Image.all
rescue_from ActionController::RoutingError, with: :image_route_error
end
[...]
end
然後我得到這個:
NoMethodError (undefined method `rescue_from' for #<ImagesController:0x007fe382227e38>
Did you mean? rescue_handlers):
任何想法?