當我嘗試rails server
時,我的終端顯示的問題!你能告訴我路由出錯了嗎?以及我能做些什麼來糾正
/home/<user_name>/.rvm/gems/ruby-2.0.0-p353/gems/activesupport-4.0.2/lib/active_support/dependencies.rb:223:in `load': /home/salmanalam/rails_projects/blog/config/routes.rb:5: syntax error, unexpected ':', expecting keyword_end (SyntaxError)
post GET /posts/:id(.:format) posts#show
這是我的config/routes.rb
Blog::Application.routes.draw do
resources :posts
get "welcome/index"
root 'welcome#index'
post GET '/posts/:id(.:format)' 'posts#show'
請發表您的'routes.rb'文件 – vee
博客:: Application.routes.draw做 資源:帖子 得到 「歡迎/指數」 根 '歡迎#指數' 後GET「/職位/:ID( 。:format)''posts#show' – redilhom
這看起來不正確,你可以編輯你的問題並粘貼你的config/routes.rb文件的內容嗎? – vee