我需要创建一个 jQuery Autocomplete 文本框,该文本框从数据库中获取名称列表,并在选择时将用户发送到相应的页面链接。
我正在尝试做类似这篇文章的事情:从 jQuery 自动完成选择中触发控制器操作
该解决方案很有意义,并且单击和重定向有效,但我不知道如何返回不仅仅是名称的字符串列表。
当前控制器代码(片段):
List<string> Names = new List<string>();
foreach (Child c in listfromDB)
{
Names.Add(c.Name);
//childNames.Add(new KeyValuePair<string, int>(c.Name, c.ID));
}
return Json(Names);
KeyValuePair
似乎没有工作。如何改为创建对象数组?
我的 jQuery 代码:
$(document).ready(function () {
$("#find-child-box").autocomplete({
source: function (request, response) {
// define a function to call your Action (assuming UserController)
$.ajax({
url: '/Admin/AutoCompleteMyChildren', type: "POST", dataType: "json",
// query will be the param used by your action method
data: { query: request.term },
success: function (data) {
response($.map(data, function (item) {
return { label: item, value: item };
}))
}
})
},
minLength: 1, // require at least one character from the user
select: function(event, ui) {
alert('mom');
window.location.href = ui.item.value;
}
});
});