1
1

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.

Rails7でdata: { turbo_method: :delete }が効かなかったときの解決法

Last updated at Posted at 2023-01-20

初歩的な内容かもしれませんが、備忘録として残しておきます。

前提として以下のgemがインストールされていること。

gem "importmap-rails"

gem "turbo-rails"

gem "stimulus-rails"

インストールが済んでいたら

$ rails importmap:install
$ rails turbo:install stimulus:install

以上のコマンドを実行することで無事deleteメソッドが使用できるようになりました。

その際以下のファイルは初期化されるので既に存在&記述してある場合は注意が必要です。
app/javascript/application.js
config/importmap.rb

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?