Rails的本地主机:“缺少请求格式的模板”吗?

时间:2019-10-01 09:07:42

标签: ruby-on-rails

我是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

我是新手,对此问题非常困惑。请你帮助我好吗?非常感谢。

0 个答案:

没有答案