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 5 years have passed since last update.

form_withで囲ったボタンが反応しなかった時のメモ

Posted at

##発生

<%= form_with(url: "/login") do |form| %>
  <%= form.submit "ログイン" , class: "btn btn-default" %>
<% end %>

と書いたときに

スクリーンショット 2018-10-12 15.02.01.png

とでてイベントの発火がされた感じがしない。

##対処
form_with内にlocal:trueを書く

  <%= form_with(url: "/login", local: true) do |form| %>

local:true にするとXML送信がオフになる
https://techracho.bpsinc.jp/hachi8833/2017_05_01/39502

turbolinksがAjaxを使ったライブラリなので、その通信をオフにすることで無効にした
https://qiita.com/morrr/items/54f4be21032a45fd4fe9

##原因

turbolinks が原因でイベントの発火に問題が起きていた
度々リンクに問題が起きるようで、その場合は無効にすると良い

Railsだと古い書き方をした場合にエラーが起こる
http://kray.jp/blog/must-know-about-turbolinks/

初学者なので変なこと書いてたらコメントください。

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?