我正在开发一个应用程序,其中我需要向用户提供搜索选项,如果用户输入'scienc',搜索功能应该获得名称科学的课程,或者如果在他们的描述中科学就像单词出现,我的意思是说,如果用户输入半字查询应该通过匹配字符序列得到完整的单词,但我不知道如何实现这个,我在我的应用程序中使用实体框架。
我还需要从多个表中搜索。
提前致谢。
答案 0 :(得分:1)
我认为您希望实现AUto完成,如果是这样,那么下面的代码将解决您的问题:
代码文件:
[WebMethod(EnableSession = true)]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public string[] GetPatientLastName(string prefix)
{
List<string> customers = new List<string>();
using (SqlConnection conn = new SqlConnection())
{
string connectionstring = CCMMUtility.GetCacheForWholeApplication();
conn.ConnectionString = connectionstring;
using (SqlCommand cmd = new SqlCommand())
{
cmd.CommandText = "select distinct top(10) PatientLastname from tblMessage where " +
"PatientLastname like '%'+ @SearchText + '%' order by PatientLastname";
cmd.Parameters.AddWithValue("@SearchText", prefix);
cmd.Connection = conn;
conn.Open();
using (SqlDataReader sdr = cmd.ExecuteReader())
{
while (sdr.Read())
{
customers.Add(string.Format("{0}", sdr["PatientLastname"]));
}
}
conn.Close();
}
return customers.ToArray();
}
}
Jquery代码:
$(document).ready(function () {
$('[ID$=txtPatientLastname]').live('keyup.autocomplete', function () {
$(this).autocomplete({
source: function (request, response) {
$.ajax({
url: '<%=ResolveUrl("~/Resources/WebService.asmx/GetPatientLastName") %>',
data: "{ 'prefix': '" + request.term + "'}",
dataType: "json",
type: "POST",
contentType: "application/json; charset=utf-8",
success: function (data) {
response($.map(data.d, function (item) {
return {
label: item.split('-')[0],
val: item.split('-')[1]
}
}))
},
error: function (response) {
alert(response.responseText);
},
failure: function (response) {
alert(response.responseText);
}
});
},
select: function (e, i) {
},
minLength: 1
});
});
});
希望这能满足您的要求。