2

最新バージョンのrubyとRORを使用しています。にいくつかのコードを配置しましたapp/views/layouts/application.html.erb file。このようなことを言いましょう:

<html>
<head><title>ABC</title></head>
<body>
  <%= yield %>
</body>
</html>

ホームページ(ATMがある唯一のページ)にレイアウトを表示するのに問題があります。ホームページも.html.erbファイルであり、基本的なhtmlコマンドとrailsコマンドが含まれています。私はそのためのコントローラーを次のように作成しました:

class HomeController < ActionController::Base
  protect_from_forgery
  def index
    #nothing yet
  end
end

何が問題なのですか?

4

1 に答える 1

5

HomeControllerはActionController::Baseから継承しています。ApplicationControllerから継承します。それは役立つかもしれません

変化する

 class HomeController < ActionController::Base

 class HomeController < ApplicationController
于 2012-10-22T05:14:43.693 に答える