我刚开始使用Rails,我不确定我做得不好.
在routes.rb我有
resources :pages
在app / controllers / pages_controller.rb我有
class PagesController < ApplicationController def index end end
我在app / views / layouts / application.html.erb中有一个布局,在app / views / home / pages / index.html.erb中有一个模板,当我请求“/ pages”时我要渲染它.但是,我得到了错误
Template is missing
Missing template pages/index,application/index with {:locale=>[:en],
:formats=>[:html],:handlers=>[:erb,:builder,:coffee]}. Searched in:
* “/###/app/views”
我已经使用stackoverflow多年没有发布,但是很多不同的东西似乎触发了这个错误,很难找到我特定情况的答案.我也是菜鸟:3请帮忙!