标签输入字段不能与涡轮链接一起工作

Tag input field not working with turbolinks

本文关键字:链接 一起 工作 输入 字段 不能 标签      更新时间:2023-09-26

我正在尝试创建一个ruby on rails项目,作为这个项目的一部分,我使用这个jQuery插件来管理标签输入。然而,标签字段工作在第一次刷新,而不是在任何页面加载后,我很确定这是一个问题与涡轮链接不运行js再次。

所以我安装了这个gem,并更改了:

  $(function() {
    $("input[data-role=tagsinput], select[multiple][data-role=tagsinput]").tagsinput();
  });
})(window.jQuery);

:

  $(document).ready(function() {
    $("input[data-role=tagsinput], select[multiple][data-role=tagsinput]").tagsinput();
  });
})(window.jQuery);
在bootstrap-tagsinput.js

然而,这仍然给我同样的问题。

try 'turoblinks:load'

而不是
$(document).ready(function(){

使用:

$(document).on('turbolinks:load',function(){