有關向您展示如何創建博客的指南,我已獲得5.7。本節將告訴您如何顯示文章,但在執行以下步驟後,我只會在嘗試運行rails server時發生錯誤。它確切地說它是一個路線行中的語法錯誤。該行是「article get /articles/:id(.:format)articles#show」,錯誤指向:id。我不知道該怎麼做,我已經看過指南的路線部分,我認爲這是一條有效的路線。Ruby on rails指南
routes.rb
包含
Rails.application.routes.draw do
get 'welcome/index'
resources :articles
root 'welcome#index'
article get /articles/:id(.:format) articles#show
end
我收到確切消息時,我使用的命令軌道服務器:
blog/config/routes.rb:5: syntax error, unexpected ':', expecting keyword_end (SyntaxError) article get /articles/:id(.:format) article#show
添加出現在控制檯中的錯誤和文章中的show.html.erb文件。 –
請發佈您的'routes.rb'文件 – jdgray