我正在尝试在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
,所以我不确定为什么会这样。
谁能告诉我应该怎么做才能解决这个问题?