2011-10-04 4 views
1

내가 가지고 실행 레일 서버에 다음과 같은 오류 :어떤 경로와 일치 [GET] CSS 파일에 대한 오류

Depot::Application.configure do 
# Settings specified here will take precedence over those in config/application.rb 

# In the development environment your application's code is reloaded on 
# every request. This slows down response time but is perfect for development 
# since you don't have to restart the web server when you make code changes. 
config.cache_classes = false 

# Log error messages when you accidentally call methods on nil. 
config.whiny_nils = true 

# Show full error reports and disable caching 
config.consider_all_requests_local  = true 
config.action_controller.perform_caching = false 

# Don't care if the mailer can't send 
config.action_mailer.raise_delivery_errors = false 

# Print deprecation notices to the Rails logger 
config.active_support.deprecation = :log 

# Only use best-standards-support built into browsers 
config.action_dispatch.best_standards_support = :builtin 

# Do not compress assets 
config.assets.compress = false 

# Expands the lines which load the assets 
config.assets.debug = true 

end 

routes.rb 파일 :

여기

ActionController::RoutingError (No route matches [GET] "/assets/scaffold.css") 

이 development.rb 파일이

Depot::Application.routes.draw do 
get "store/index" 

resources :products  
root :to => 'store#index', :as => 'store' 
end 

"config.serve_static_assets = true"를 넣으려고했으나 도움이되지 않습니다. 누가 잘못되었는지 아는 사람 있습니까?

+0

에 – Peter

답변

2

당신은 아마 어딘가에 엉망 경로를 가지고, 또는 당신은 컨트롤러가 /assets/scaffold.css 본질적으로 오류가 /assets/scaffold.css/controller/action.format으로 해석되고 있음을 말하고있다 assets_controller 또는 경로와 이름 충돌의 원인이되는 다른 뭔가를 불렀다 - 의미 ...

assets_controller이 존재하며 scaffold 동작을 호출하려고 시도 중이며 응답을 요청하는 메시지는 .css입니다.

또한,이 경로에 따라, 당신의 scaffold.css 파일 확인, 나는이 routes.rb 파일을 게시해야 %APP_ROOT%/public/assets/scaffold.css