我必须将近50k记录绑定到我的asp.net下拉列表中,并且必须可以搜索。实施它的最佳方法是什么?是否有任何缓存技术,以便在我们滚动时加载列表?感谢建议。
请告知。
答案 0 :(得分:3)
我建议您利用jQuery的自动完成插件:
https://jqueryui.com/autocomplete/
它是可配置的,并且具有开箱即用的自动完成搜索功能。它也可以使用您的远程数据源(尽管您可能会考虑分页API响应):
答案 1 :(得分:2)
在后端,创建一个controller action
(如果您使用的是ASP.NET MVC)或page method
(如果您使用的是ASP.NET Web窗体),它会收到searchTerm
1}}参数并返回顶部(例如,100)结果的数组。
在前端,使用预先 / 自动填充插件,例如this one。当用户设置搜索词时,对后端执行Ajax请求并显示结果。执行Ajax request时,您还可以启用和配置缓存。不需要进一步优化。
答案 2 :(得分:1)
使用自动完成文本框并从远程API设置数据源,尤其是在处理大型数据集时。这将避免您的应用程序UI在每次字符搜索时被挂起。
答案 3 :(得分:1)
您可以使用网络服务来实现这一目标。
首先在aspx页面中添加以下代码。
<div>
<input type="text" value="" id="tbCountries" />
</div>
现在,使用以下代码创建您的Web服务。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;
using System.Data.SqlClient;
[System.Web.Script.Services.ScriptService]
public class WebService : System.Web.Services.>WebService {
[WebMethod]
public List<string> ShowCountryList(string sLookUP)
{
List<string> lstCountries = new List<string>();
string sConnString = "Data Source=DNA;Persist Security Info=False;" +
"Initial Catalog=DNA_CLASSIFIED;User Id=sa;Password=;Connect Timeout=30;";
SqlConnection myConn = new SqlConnection(sConnString);
SqlCommand objComm = new SqlCommand("SELECT CountryName FROM Country " +
"WHERE CountryName LIKE '%'+@LookUP+'%' ORDER BY CountryName", myConn);
myConn.Open();
objComm.Parameters.AddWithValue("@LookUP", sLookUP);
SqlDataReader reader = objComm.ExecuteReader();
while (reader.Read()) {
lstCountries.Add(reader["CountryName"].ToString());
}
myConn.Close(); return lstCountries;
}
}
最后,使用webservice创建用于绑定Textbox的jquery方法,
<script>
$(document).ready(function() {
BindControls();
});
function BindControls() {
$("#tbListOfCountries").autocomplete({
source: function(request, response) {
$.ajax({
url: "WebService.asmx/ShowCountryList",
data: "{ 'sLookUP': '" + request.term + "' }",
dataType: "json",
type: "POST",
contentType: "application/json; charset=utf-8",
dataFilter: function(data) { return data; },
success: function(data) {
response($.map(data.d, function(item) {
return { value: item }
}))
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert(textStatus);
}
});
},
minLength: 1 // MINIMUM 1 CHARACTER TO START WITH.
});
}
</script>
答案 4 :(得分:0)
取决于列表项的来源。 如果他们来自列表或数据库只是附加他们然后使用javascript搜索列表。
答案 5 :(得分:0)
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css" />
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>
<form id="form1" runat="server">
<div class="ui-widget">
<asp:TextBox ID="txtDepartment" runat="server" ClientIDMode="Static" />
</div>
</form>
<script>
$(function () {
$("[id$=txtDepartment]").autocomplete({
source: function (request, response) {
$.ajax({
url: "FetchDropdownList.aspx/GetDepartment",
data: "{'departmentName':'" + document.getElementById('txtDepartment').value + "'}",
dataType: "json",
type: "POST",
contentType: "application/json; charset=utf-8",
dataFilter: function (data) { return data; },
success: function (data) {
response($.map(data.d, function (item) {
return {
value: item.Name
}
}))
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
alert(textStatus);
}
});
},
minLength: 1
});
});
</script>
</body>
</html>
public class Department
{
public int Id { get; set; }
public string Name { get; set; }
}
private static List<Department> GetDepartment()
{
List<Department> departments = new List<Department>();
for (int i = 0; i < 10000; i++)
{
Department department = new Department();
department.Id = i;
department.Name = "Department " + i.ToString();
departments.Add(department);
}
return departments;
}
[WebMethod]
public static List<Department> GetDepartment(string departmentName)
{
int totalDepartments = GetDepartment().Count;
List<Department> departments = GetDepartment().Where(d => d.Name.ToLower().StartsWith(departmentName.ToLower())).Take(20).ToList();
return departments;
}
答案 6 :(得分:0)
我遇到了和你一样的问题,我使用了 RadAutoCompleteBox 。它有很多 客户端和服务器端事件,可帮助您处理各种情况。它非常适合ASP.NET项目。
答案 7 :(得分:0)
我看到两个直接的解决方案。
与this one类似:
答案 8 :(得分:0)
绝对任何自动填充实施都适用于您的方案。
解决方案1:使用自动填充选择框
解决方案2 :使用select with virtualization