帮看看是什么错误

帮看看是什么错误

php?name=rails" onclick="tagshow(event)" class="t_tag">rails hei =hei>ruby script/server
打开http://localhost:3000/hei是下面的提示:

MissingSourceFile in HeiController#index
。。。
哪错了?
错误提示只有这一句啊?看起来是Hei的index这个action
一切皆有可能!
因为hei下面的控制器里没有定义任何action啊,当你调用Rails控制器时,又没有明确指定一个action时,hei就会自动去找index()这个action方法,但是你又没有,所以就报错了~
你可以在hei>ruby sript/generate controller xxx定义一个控制器,然后在xxx控制器里面定义index()方法,比如:def index
              puts "Hello"
              end
然后再试试:http://localhost:3000/hei


我是菜鸟,不知道对不对哦,,,,向高手请教~
写错了,是hei>ruby script/generate controller hei ,然后再hei_controller.rb下面定义index方法,然后再http://localhost:3000/hei应该就可以了~