ruby-on-rails – 我不能在Ruby on Rails上提供静态图像

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 我不能在Ruby on Rails上提供静态图像前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试访问:
http://localhost:3000/images/Header.png

但我一直收到这个错误

Routing Error

No route matches "/images/Header.png" with {:method=>:get}

以下是我的路线:

ActionController::Routing::Routes.draw do |map|
  map.resources :worker_antpile_statuses

  map.resources :worker_antpiles

  map.resources :antcolonies

  map.resources :antpiles

  map.resources :clients
  map.connect ':controller/:action/:id'
  map.connect ':controller/:action/:id.:format'
end

解决方法

routes.rb的最后两行是与所有以前不匹配的URL匹配的catch-all路由.
注释掉这两行并且它将起作用,这是您在所有应用程序中使用RESTful路由时要执行的操作.

有关Rails路由的所有信息,请参阅this excellent guide.

原文链接:https://www.f2er.com/ruby/269333.html

猜你在找的Ruby相关文章