gpt4 book ai didi

ruby-on-rails - Rails 博客 : Edit is Creating a Duplicate Record

转载 作者:数据小太阳 更新时间:2023-10-29 07:59:08 25 4
gpt4 key购买 nike

在 Rails 中创建博客,编辑功能会复制帖子,然后将更改保存到新记录中。我想要编辑,所以只需编辑原始帖子,不要做任何重复。

想知道是否有人可以帮助我。

这是一些代码...如果我需要发布任何其他内容,请告诉我!

posts_controller.rb

class PostsController < ApplicationController
def index
@posts = Post.all.order('created_at DESC')
end

def new
if user_signed_in?
@post = Post.new
else
redirect_to new_user_session_path
end
end

def create
@post = Post.new(post_params)
@post.save
redirect_to @post
end

def show
@post = Post.find(params[:id])
end

def edit
if user_signed_in?
@post = Post.find(params[:id])
else
redirect_to new_user_session_path
end
end

def update
@post = Post.find(params[:id])

if @post.update(params[:post].permit(:title, :category, :body))
redirect_to @post
else
render 'edit'
end
end

def destroy
if user_signed_in?
@post = Post.find(params[:id])
@post.destroy
redirect_to posts_path
else
redirect_to new_user_session_path
end
end

private
def post_params
params.require(:post).permit(:title, :category, :body)
end
end

_form.html.erb

<%= form_for :post, url: posts_path do |f| %>
<p>
<%= f.label :title %>
<%= f.text_field :title %>
</p>
<p>
<%= f.label :category %>
<%= f.select :category, ['x', 'y', 'z'] %>
</p>
<p>
<%= f.label :body %>
<%= f.text_area :body %>
</p>
<p class="actions"><%= link_to 'Back to Posts', posts_path %> | <%= f.submit %></p>
<% end %>

routes.rb

Rails.application.routes.draw do
resources :posts, :lines
get 'home/index'

devise_for :users

root 'home#index'

devise_scope :user do
get "/admin" => "devise/sessions#new"
end
end

最佳答案

您的表单是使用 POST 操作构建的,因为您在 form_for 中的第一个参数是符号 :post 而不是实例 @post。如果因为要将字段用于编辑 View 和新 View 而将表单放在部分中,则应将 Ruby 用于部分中的字段,但将 form_for 调用放在编辑中和新观点。在编辑 View 中,您应该使用

<%= form_for @post do |f| %>

因此它为现有记录而不是新记录构建表单。

关于ruby-on-rails - Rails 博客 : Edit is Creating a Duplicate Record,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33947771/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com