2010年05月18日
rails No route matches への対応。
DBを使わずに controller(tests) だけ generate し、
controller に index action を作成。
views に index.html.erb を作成したが以下が出た。
ルーティングがわかっていない様なので config/routes.rb に以下を追加してOK。
controller に index action を作成。
views に index.html.erb を作成したが以下が出た。
No route matches "/tests" with {:method=>:get}
ルーティングがわかっていない様なので config/routes.rb に以下を追加してOK。
map.connect '', :controller => 'tests'
【Railsの最新記事】