0

我有一个 Rails 应用程序,到目前为止只包含后端代码(一个小的自定义工作流引擎、Redis、工头等)。今天我尝试将第一个控制器添加到应用程序中,但我无法加载新控制器。

我用了:

rails generate controller CollectedData new --no-test-framework

回来了:

  create  app/controllers/collected_data_controller.rb
   route  get "collected_data/new"
  invoke  erb
  create    app/views/collected_data
  create    app/views/collected_data/new.html.erb
  invoke  helper
  create    app/helpers/collected_data_helper.rb
  invoke  assets
  invoke    coffee
  create      app/assets/javascripts/collected_data.js.coffee
  invoke    scss
  create      app/assets/stylesheets/collected_data.css.scss

我也跑了rake routes,得到了这个:

collected_data_new GET /collected_data/new(.:format) collected_data#new

但是每当我http://localhost:3000/collected_data/new在浏览器中加载时,我都会得到:

Not Found: /collected_data/new

这是我的 routes.rb 文件的内容:

Crows::Application.routes.draw do
  get "collected_data/new"

  # The priority is based upon order of creation:
  # first created -> highest priority.

  # Sample of regular route:
  #   match 'products/:id' => 'catalog#view'
  # Keep in mind you can assign values other than :controller and :action

  # Sample of named route:
  #   match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
  # This route can be invoked with purchase_url(:id => product.id)

  # Sample resource route (maps HTTP verbs to controller actions automatically):
  #   resources :products

  # Sample resource route with options:
  #   resources :products do
  #     member do
  #       get 'short'
  #       post 'toggle'
  #     end
  #
  #     collection do
  #       get 'sold'
  #     end
  #   end

  # Sample resource route with sub-resources:
  #   resources :products do
  #     resources :comments, :sales
  #     resource :seller
  #   end

  # Sample resource route with more complex sub-resources
  #   resources :products do
  #     resources :comments
  #     resources :sales do
  #       get 'recent', :on => :collection
  #     end
  #   end

  # Sample resource route within a namespace:
  #   namespace :admin do
  #     # Directs /admin/products/* to Admin::ProductsController
  #     # (app/controllers/admin/products_controller.rb)
  #     resources :products
  #   end

  # You can have the root of your site routed with "root"
  # just remember to delete public/index.html.
  # root :to => 'welcome#index'

  # See how all your routes lay out with "rake routes"

  # This is a legacy wild controller route that's not recommended for RESTful applications.
  # Note: This route will make all actions in every controller accessible via GET requests.
  # match ':controller(/:action(/:id))(.:format)'
end

过程文件内容:

redis: redis-server config/redis/redis.conf
clock: bundle exec rake resque:scheduler --trace
cp_resp_poller: bundle exec rake environment resque:work QUEUE=cp_resp_poller
cp_req_sender: bundle exec rake environment resque:work QUEUE=cp_req_sender --trace
server: rails server

我也尝试过重新启动 WEBrick。

更新:我注意到 Webrick 在请求此控制器(或我尝试添加的任何新控制器)时返回 HTTP 404。

已修复:请参阅我自己对这个问题的回答。

4

1 回答 1

1

修复:我通过更改我的 config.ru 文件修复了这个问题。

原来的内容是:

require ::File.expand_path('../config/environment',  __FILE__)
run Crows::Application

require 'resque/server'
run Rack::URLMap.new "/resque" => Resque::Server.new

我通过注释掉上面与 Resque 相关的最后两行来修复控制器未找到问题。最后两行是在开发我的应用程序的工作流/后端部分的早期添加的,并为 Resque 启用了基于 Web 的管理界面。

更新:我现在有我的 Rails 应用程序(加上它的 Web 控制器等)和 Resque Web 管理界面并排运行。通过从 config.ru 文件中删除最后两行并将以下行添加到我的 routes.rb 文件中,我得到了这个工作:

resources :resque_web_admin
mount Resque::Server, :at => "/resque"
于 2013-08-13T16:38:14.510 回答