gpt4 book ai didi

jquery - Select2 加载时间过长

转载 作者:行者123 更新时间:2023-12-05 04:23:22 24 4
gpt4 key购买 nike

当我在 rails 中使用 select2 并重新加载时,此条目出现 1 秒

enter image description here

然后就恢复正常了,如下图:

enter image description here

这是我的代码,我已经尝试将它放在 css display hidden 和 visibility true 中,但没有成功

javascript:
$("#js-customer").select2({
maximumSelectionLength: 15,
minimumInputLength: 1,
tags: true,
tokenSeparators: [',', ' '],

language: {
maximumSelected: function (e) {
return I18n.t('customers.limit_max');
},

inputTooShort: function (e) {
return I18n.t('customers.limit_min');
},

noResults: function(){
return I18n.t('customers.not_result_found');
}
},
});

这是我的输入标签:

= f.input :tag_ids, collection: Tag.all, input_html: { class: "js-example-basic-multiple js-example-responsive", multiple: true, id: "js-customer"}, include_blank: false

在此问题上,我将不胜感激。

最佳答案

我通过从 tag_ids 输入中删除 css 样式和 multiple:true 解决了这个问题

= f.input :tag_ids, collection: Tag.all, input_html: { id: "js-customer"}, include_blank: false

有了这个,它不再缓慢地重新加载或在集合中创建口是心非

关于jquery - Select2 加载时间过长,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73733513/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com