で簡単なブログ投稿を実行しようとしていますlocalhost:3000/posts
。
ページにアクセスしようとすると、このエラーが表示されます。
Template is missing
Missing template posts/index, application/index with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :coffee]}. Searched in: * "c:/Sites/myrubyblog/app/views"
これが私のコードのコピーですposts_controller.rb
:
class PostsController < ApplicationController
def index
end
end
ディレクトリにindex.html.erb
ファイルがあるc:/Sites/myrubyblog/app/views
ので、なぜこれが起こっているのかわかりません。
この問題を解決するために何をすべきか教えてもらえますか?