保存了sublime,现在我无法在OS X 10.9.5上连接到localhost:3000

时间:2015-03-10 05:42:47

标签: syntax-error ruby-on-rails-4.2

我是编程的新手,我遇到了这个无法找到答案的问题 - 我已经保存了崇高的更新,并且无法连接到{ {3}}(在OS X 10.9.5上)

当我尝试重新启动服务器或迁移数据库时,我一直收到语法错误: config / routes.rb:63:语法错误,意外的keyword_end,期望输入结束(SyntaxError)

Rails.application.routes.draw做       资源:帖子做         资源:评论,仅限:[:创建]       端

  # root 'welcome#index'

  # The priority is based upon order of creation: first created ->            highest priority.
  # See how all your routes lay out with "rake routes".

  # You can have the root of your site routed with "root"
  # root 'welcome#index'

  # Example of regular route:
  #   get 'products/:id' => 'catalog#view'

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

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

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

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

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

  # Example resource route with concerns:
  #   concern :toggleable do
  #     post 'toggle'
  #   end
  #   resources :posts, concerns: :toggleable
  #   resources :photos, concerns: :toggleable

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

1 个答案:

答案 0 :(得分:0)

看起来你错过了路由文件的初始声明。请参阅下面的示例。您收到此错误的原因是文件底部有一个end,但它不知道您要尝试结束的内容。

Rails.application.routes.draw do
  #Routes Go Here
end