我是Ruby Rails的新手,我正在尝试通过此YouTube指南制作一个Rails页面
https://www.youtube.com/watch?v=pPy0GQJLZUM
当我跟随页面时,我遇到了这个问题。当我尝试打开本地主机:localhost:3000时,它给了我此通知
PostsController#index is missing a template for request formats: text/html
在\app\views\posts
中,我有这样的index.html.erb
文件
<h1>Index</h1>
在\app\controllers\posts_controller.rb
中,我有这样的posts_controller.rb
文件
class PostsController < ApplicationController
def index
end
end
在\config\routes.rb
中,我有这样的routes.rb
文件
Rails.application.routes.draw do
root 'posts#index'
end
我是新手,对此问题非常困惑。请你帮助我好吗?非常感谢。