我有一個新的RoRs應用程序。它有一個頁面,這些配置:什麼是未初始化常量?
的routes.rb
Rails.application.routes.draw do
get 'welcome' => 'mypages#home'
my_pages_controller.rb
class MyPagesController < ApplicationController
def home
end
end
當我運行在本地主機的應用程序:3000 /歡迎,我得到這個錯誤:
Routing Error
uninitialized constant MypagesController
任何想法是什麼錯?
localhost:3000加載沒有問題。
「MypagesController」的文件名是什麼? –