Rails “Template is missing” error

后端 未结 2 1124
野性不改
野性不改 2021-01-24 16:29

I am beginner in Rails.

In routes.rb I have

resources :posts

http://i.imgur.com/FlGROJC.png?1

when I click to \"Ad

2条回答
  •  心在旅途
    2021-01-24 17:05

    That means that Rails is looking for posts/new.html.erb, and you don't have a posts/new.html.erb file. (Or haml file, or whatever templating language you're using.

提交回复
热议问题