1
3

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

Railsでturbolinksを無効にする

Last updated at Posted at 2020-10-13

#1.よくある事象(リロードすると治る)
・ページに飛ぶとそのページだけ揺れ続ける。
・form_for/withのsubmitを押しても遷移しない。
・スライダーの画像が配列になってしまう。
#2.turbolinksを無効にする必要がある

views/layout/application.html.erb

<div 
 <% if content_for?(:body_attributes) %>  
   <%= yield(:body_attributes) %>
 <% end %>
>
 <%= yield %>
</div>

divの閉じかっこを閉じずに
<% if content_for?(:body_attributes) %> <%= yield(:body_attributes) %>  <% end %>を中に入れる
####無効にしたいviewページの一番上に下記のコードを挿入

<% content_for(:body_attributes) do %>
      data-turbolinks="false"
  <% end %>

##リンク先のturbolinksを無効にしたい場合はlink_to内に
,data: {"turbolinks" => false}をつけてあげれば無効化できます。

a href で無効化したい時

<div data-turbolinks='false'>
    <a href="/"></a>
</div>

#3.終わりに
こんなに簡単にできてしまうとは!!
まだまだ勉強せねば!!

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?