2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

railsの削除機能 destroyが機能しない原因と解決策

Last updated at Posted at 2022-02-20

railsの削除機能が効かないのは
javascriptのjqueryが効いていないのが原因でした。
なので、以下のようなコードをapplication.jsに追加すると
削除機能が動くようになりました。

application.js
//= require jquery
//= require jquery_ujs

それでも動かない場合はこちらを試すと正常に動きました。

Railsのセキュリティー機能CSRFが動いているため

以下のように書き直すと動きました。

rails
link_toではなくbutton_toにする
<%= button_to '削除', board, class: 'btn btn-outline-dark', method: :delete %>

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?