我正在使用gon并拥有我的应用Turbolinks。
根据这个website,你应该"当使用turbolinks使Gon在每个移动的路面重新加载时,将Gon包括在身体而不是头部。"
目前我已关注gon page instructions并将其放入< head>
<!DOCTYPE html>
<head>
<title><%= full_title(yield(:title)) %></title>
<!-- gon on top of page -->
<%= include_gon(:init => true) %>
<%= Gon::Base.render_data({}) %>
</head>
<body>
</body>
</html>
相关吗?什么是&#34;铺平移动&#34; ?在这种情况下,我应该在&lt; body&gt;内移动gon代码?