被摧毁的物体还在吗?

yptwkmov  于 2022-10-15  发布在  Ruby
关注(0)|答案(1)|浏览(95)

“销毁”方法在我的网站上不起作用。我创建了一个“删除”链接,但当我点击它时,我只是被重定向。
下面是带有销毁方法的控制器:

class PostsController < ApplicationController
  def index
    @posts = Post.all
  end

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

  def new
    @post = Post.new
  end

  def create
    @post = Post.new(post_params)

    if @post.save
      redirect_to @post
    else
      render :new, status: :unprocessable_entity
    end
  end

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

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

    if @post.update(post_params)
      redirect_to @post
    else
      render :edit, status: :unprocessable_entity
    end
  end

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

    redirect_to root_path, status: :see_other
  end

  private
    def post_params
      params.require(:post).permit(:title, :description, :image, :price)
    end
end

没什么花哨的。以下是我的帖子/show.html.erb视图中的链接:

<%= link_to 'Delete', root_path,
              method: :delete,
              data: { confirm: 'Are you sure?' } %>

不起作用-我只是被重定向到根路径,而我试图删除的帖子仍然存在。
我试着在Rails控制台中删除一个帖子,但确实奏效了。
Rails 7.0.4
Ruby 3.1.2
在本地站点上单击“删除”链接后的服务器输出:

Started GET "/posts/3" for ::1 at 2022-10-09 23:59:02 -0400
  ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
Processing by PostsController#show as HTML
  Parameters: {"id"=>"3"}
  Post Load (0.1ms)  SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
  ↳ app/controllers/posts_controller.rb:7:in `show'
  Rendering layout layouts/application.html.erb
  Rendering posts/show.html.erb within layouts/application
  ActiveStorage::Attachment Load (0.1ms)  SELECT "active_storage_attachments".* FROM "active_storage_attachments" WHERE "active_storage_attachments"."record_id" = ? AND "active_storage_attachments"."record_type" = ? AND "active_storage_attachments"."name" = ? LIMIT ?  [["record_id", 3], ["record_type", "Post"], ["name", "image"], ["LIMIT", 1]]
  ↳ app/views/posts/show.html.erb:11
  ActiveStorage::Blob Load (0.1ms)  SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
  ↳ app/views/posts/show.html.erb:12
  Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = ?  [["post_id", 3]]
  ↳ app/views/posts/show.html.erb:23
  Rendered collection of templates [0 times] (Duration: 0.0ms | Allocations: 35)
  Rendered comments/_form.html.erb (Duration: 31.1ms | Allocations: 6334)
  Rendered posts/show.html.erb within layouts/application (Duration: 142.9ms | Allocations: 31474)
  Rendered layout layouts/application.html.erb (Duration: 300.1ms | Allocations: 53293)
Completed 200 OK in 402ms (Views: 312.5ms | ActiveRecord: 2.1ms | Allocations: 66385)

Started GET "/rails/active_storage/disk/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaDdDVG9JYTJWNVNTSWhiR28xZVRKamJucHhZM0pxZFhaak9YZGxZelY0ZVdwbGREWnlNZ1k2QmtWVU9oQmthWE53YjNOcGRHbHZia2tpWldsdWJHbHVaVHNnWm1sc1pXNWhiV1U5SW1sc1h6RTFPRGg0VGk0ek1qSTNNRGc0TlRZMVh6SmlkWGd1Y0c1bklqc2dabWxzWlc1aGJXVXFQVlZVUmkwNEp5ZHBiRjh4TlRnNGVFNHVNekl5TnpBNE9EVTJOVjh5WW5WNExuQnVad1k3QmxRNkVXTnZiblJsYm5SZmRIbHdaVWtpRG1sdFlXZGxMM0J1WndZN0JsUTZFWE5sY25acFkyVmZibUZ0WlRvS2JHOWpZV3c9IiwiZXhwIjoiMjAyMi0xMC0xMFQwNDowMTo0My45NDVaIiwicHVyIjoiYmxvYl9rZXkifX0=--00b620d927983a0cba2300d10b1e2234b9306a84/il_1588xN.3227088565_2bux.png" for ::1 at 2022-10-09 23:59:03 -0400
Processing by ActiveStorage::DiskController#show as PNG
  Parameters: {"encoded_key"=>"[FILTERED]", "filename"=>"il_1588xN.3227088565_2bux"}
Completed 304 Not Modified in 7ms (ActiveRecord: 0.0ms | Allocations: 559)
ruarlubt

ruarlubt1#

看起来你对Turbo或Rails UJS有问题。
它们应该真的有效,并通过Java脚本发送DELETE请求:


# Turbo

link_to "delete", @post, data: { turbo_method: :delete }

# Rails UJS

link_to "delete", @post, method: :delete

如果您的脚本被破坏,datamethod属性将被忽略,您只需单击一个链接即可显示@post,这就是日志中发生的情况。
另一方面:
data-turbo-method将链路请求类型从默认的GET更改。理想情况下,非GET请求应该通过表单触发,但在表单不可能的情况下,数据加速方法可能很有用。

要使用表单触发DELETE请求,您可以使用button_to,它会创建一个小表单,并且Rails会正确处理路由到destroy的操作:

button_to "Delete", @post, method: :delete
  • https://api.rubyonrails.org/classes/ActionView/Helpers/UrlHelper.html#method-i-button_to*

相关问题