单击Rails 5中浏览器上的后退按钮时,Select2的表单会重复

时间:2017-01-03 11:30:52

标签: javascript jquery ruby-on-rails jquery-select2 select2

_header.html.erb(表单部分)

<%= form_for home_path, class: 'home', role: 'search', method: :get do |f| %>
<div class="form-group" style="display:inline;">
 <div class="input-group input-group-md">
 <%= text_field_tag :q, params[:q], placeholder: ... ,class: 'form-control hideOverflow', type: "search" %>
 <%= select_tag "category", options_from_collection_for_select(...),include_blank: true, class: 'form-control hideOverflow', type: "search" %>
 <%if logged_in? %>
  <%= select_tag "location", options_for_select([...], ...),class: 'form-control hideOverflow', type: "search" %>
 <% else %>
  <%= select_tag "location", options_for_select([...], ...),class: 'form-control hideOverflow', include_blank: true, type: "search" %>
 <% end %>
  <span class="input-group-addon"><%= submit_tag "Search", class: "btn-transparent"%></span>
 </div>
</div>
<% end %>

JS代码

<script>
 $( document ).on('turbolinks:load', function() {
    $('select#category').select2({ 
        width: '60%', 
        dropdownAutoWidth : true, 
        placeholder: "Choose a category",
        maximumSelectionLength: 3
    }); 
    $('select#location').select2({
        width: '40%', 
        dropdownAutoWidth : true, 
        minimumResultsForSearch: Infinity
    });
 });

</script>

毛刺或渲染问题(单击链接查看图像)

normal

after I click back button from the browser

有人可以帮我解释原因吗?另外,我的搜索表单位于标题部分文件的导航栏中。

如果我摆脱$(...)。在脚本中选择,一切正常......我认为select.js存在问题

5 个答案:

答案 0 :(得分:7)

在这里回答: https://stackoverflow.com/a/41915129/5758027

我在自己的代码中使用了这个解决方案:

    $(document).on('turbolinks:before-cache', function() {     // this approach corrects the select 2 to be duplicated when clicking the back button.
        $('.select-select2').select2('destroy');
        $('.select-search-select2').select2('destroy');
    } );

和观察员:

    $(document).ready( ready );                  //... once document ready
    $(document).ajaxComplete( ready );           //... once ajax is complete
    $(document).on('turbolinks:load', ready );   //... once a link is clicked

    function ready() {
        $(".select-search-select2").select2({
            theme: "bootstrap",
            language: 'es',
            allowClear: true
        });

        $(".select-select2").select2({
            theme: "bootstrap",
            language: 'es',
            minimumResultsForSearch: Infinity,
            allowClear: true
        });
    };

答案 1 :(得分:3)

没有一直清除缓存,使用turbolinks几乎没有意义吗?

这样的事情呢?

$(document).on('turbolinks:before-cache', function(e) {
  return $('.form-control.select2').each(function() {
    return $(this).select2('destroy');
  });
});

答案 2 :(得分:2)

我无法解决此渲染问题(仍在等待正确答案!)但如果有人遇到类似我的问题,请尝试在框外思考。这是我的黑客:我在我的应用程序中添加了一个后退按钮。

获取完整的网址

# get the previous url 
def save_previous_page
    session[:return_to] = request.fullpath
end

仅当页面不是主页或搜索页面时显示后退按钮

<% if session[:return_to] != request.fullpath%>
   <%= link_to session.delete(:return_to) || request.fullpath, class: 'back-button' do%>
     <i class="fa fa-arrow-circle-left" aria-hidden="true"></i>
   <%end%>
<% end %>

与此同时,我仍在等待并尝试解决渲染问题......

固定问题

只需在.js文件中添加此代码

即可
Turbolinks.clearCache();

答案 3 :(得分:0)

这很可能是一些资产不一致,你应该检查你的app\views\layouts文件夹中是否有重复的jQuery,jQuery UJS或Turbolinks声明的文件。检查网页的所有<script>标记,以及是否在layout文件夹和内部视图中同时声明相同的脚本。如果不是这种情况,请检查renderyieldbuild来电

答案 4 :(得分:0)

简单的解决方案,不要在您不想运行的东西上运行 select2 构建器。

$("select#category:not(.select2-container):not(.select2-hidden-accessible)").select2();