Ruby on Rails 应用程序的一部分代码:
#routes.rb
namespace :admin do
root :to => 'admin#index'
resources :orders, :products
end
#controllers/admin/admin_contrller.rb
class Admin::AdminController < ApplicationController
def index
end
end
该index
视图位于views/admin/index.html.haml
. 但是,它没有找到它(http://localhost:3000/admin
,缺少模板)。只有当它位于views/admin/admin/index.html.haml
.
我做错了什么?我应该怎么做才能找到视图views/admin/index.html.haml
?