私はこれに少し立ち往生しており、次のエラーが発生する正確な理由を理解できません。
未定義のメソッド `entries_path' for <%= form_for(@entry) do |f| %>
entry_controller:
class EntryController < ApplicationController
def index
end
def new
@entry = Entry.new
end
def create
@entry = Entry.new(user_params)
if @entry.save
redirect_to @entry
else
render 'new'
end
end
private
def user_params
params.require(:entry).permit(:comment, :flag)
end
end
ルートには次のものがあります。
resources :entry
エラーが発生した新しいページ:
<%= form_for(@entry) do |f| %>
<%= f.label :comment %>
<%= f.text_field :comment %>
<%= f.label :flag %>
<%= f.text_field :flag %>
<% end %>
なぜこのエラーが発生するのかわかりません。