Моя кнопка отправки не будет публиковать какую-либо информацию в базе данных или перенаправлять себя обратно на домашнюю страницу после нажатия кнопки.Нужна помощь в выявлении потенциальных ошибок в коде
Это приложение для рельсов, которое я должен представить для класса.Я попытался изменить, где кнопка отправки была в файле HTML.изменение проверки ошибок и формы.но кнопка отправки и действие обновления не начнутся
edit.html.erb
<div>
<h1 align="center">Edit Recipe</h1>
<%= form_for :recipe, url: recipes_path, method: :patch do |f| %>
<% if @recipe.errors.any? %>
<div id="error_explanation">
<h2>
<%= pluralize(@recipe.errors.count, "error") %> prohibited
this recipe from being saved:
</h2>
<ul>
<% @recipe.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<h2><strong><%=f.label :Title %></strong></h2>
<p>
<%=f.text_field :title %>
</p>
<h2><%= f.label :Description %></h2>
<p>
<%= f.text_field :description %>
</p>
</div>
<div>
<h2><%= f.label :Instruction %></h2>
<p>
<%= f.text_field :instruction %>
</p>
</div>
<div>
<h2> <%= f.label :Ingredients %></h2>
<p>
<%= f.text_field :ingredients %>
</p>
<p>
<%= f.submit %>
</p>
</div>
<% end %>
<%= link_to 'Back', home_page_index_path %>
recipe_controller.rb
class RecipesController < ApplicationController
def index
@recipes = Recipe.all
end
def new
@recipe = Recipe.new
end
def show
@recipe = Recipe.find(params[:id])
end
def create
@recipe = Recipe.new(recipes_params)
if @recipe.save
redirect_to @recipe
else
render 'new'
end
end
def edit
@recipe = Recipe.find(params[:id])
end
def update
@recipe = Recipe.find(params[:id])
if @recipe.update(recipe_params)
redirect_to @recipe
else
render 'edit'
end
end
private
def recipes_params
params.require(:recipe).permit(:title, :instruction, :ingredients, :description)
end
end
recipe.rb
class Recipe < ApplicationRecord
validates :title, presence: true, length: { minimum: 5 }
end