gpt4 book ai didi

javascript - 对于大数据,多选下拉搜索非常慢

转载 作者:行者123 更新时间:2023-11-28 05:05:03 27 4
gpt4 key购买 nike

嗨,我正在使用多选下拉菜单,使用 select2 jquery 4.0.3我正在使用 Viewbag 获取数据,并在 viewbag 中加载大约 9000 个数据,下面是下拉列表

@Html.DropDownListFor(m => m.Tags, ViewBag.tags1 as IEnumerable<SelectListItem> , "----Select tags----", new { @class = "Tags form-control", multiple = "multiple", @id = "Tags" })

<script>
$(document).ready(function () {
$("#Tags").select2({
placeholder: "Select Tags",
minimumInputLength: 3,
tags: true
})
});
</script>

ViewBag.tags1 包含我的数据,现在我的页面加载完美,但在搜索时(在下拉搜索框中键入所需数据)下拉 react 非常非常慢。

感觉系统挂了,搜索框中的任何操作都非常慢。

有什么解决办法吗?需要帮助。

最佳答案

加载 9000 个项目并将其插入到 DOM 中是一个坏主意。

请看下面的代码,很容易实现。这将允许您按页加载数据。

您需要创建一个返回 JSON 的端点。

$(".js-data-example-ajax").select2({
ajax: {
url: "https://api.github.com/search/repositories",
dataType: 'json',
delay: 250,
data: function (params) {
return {
q: params.term, // search term
page: params.page
};
},
processResults: function (data, params) {
// parse the results into the format expected by Select2
// since we are using custom formatting functions we do not need to
// alter the remote JSON data, except to indicate that infinite
// scrolling can be used
params.page = params.page || 1;

return {
results: data.items,
pagination: {
more: (params.page * 30) < data.total_count
}
};
},
cache: true
},
escapeMarkup: function (markup) { return markup; }, // let our custom formatter work
minimumInputLength: 1,
templateResult: formatRepo, // omitted for brevity, see the source of this page
templateSelection: formatRepoSelection // omitted for brevity, see the source of this page
});

关于javascript - 对于大数据,多选下拉搜索非常慢,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41821861/

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