作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
嗨,我正在使用多选下拉菜单,使用 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/
我正在尝试用 Swift 编写这段 JavaScript 代码:k_combinations 到目前为止,我在 Swift 中有这个: import Foundation import Cocoa e
我是一名优秀的程序员,十分优秀!