我想丢弃一些请求,什么也不做.不生成错误.Rails 4.1.
像这样的路线:
ActionController的:: RoutingError(无路由匹配[GET] "/edist-images/article/bw_2014-mid-year-outlook_180x120.jpg"):
您可以强制Rails使用HTTP状态代码响应特定路由.例如,要为您丢失的图像回复200 OK:
get '/edist-images/article/bw_2014-mid-year-outlook_180x120.jpg', to: proc { [200, {}, ['']] }