我正在使用带有 ajax 函数的 Bootstrap typeahead,并且想知道正确的 Json 结果格式是什么,以返回 Id 和描述。我需要 Id 将 typeahead 选定元素与 mvc3 模型绑定。
这是代码:
[Html]
<input id="myTypeahead" class='ajax-typeahead' type="text" data-link="myUrl" data-provide="typeahead" />
[Javascript]
$('#myTypeahead').typeahead({
source: function (query, process) {
return $.ajax({
url: $('#myTypeahead').data('link'),
type: 'post',
data: { query: query },
dataType: 'json',
success: function (jsonResult) {
return typeof jsonResult == 'undefined' ? false : process(jsonResult);
}
});
}
});
This works properly when I return a simple list of strings, for example:
{item1, item2, item3}
But I want to return a list with Id, for example:
{
{Id: 1, value: item1},
{Id: 2, value: item2},
{Id: 3, value: item3}
}
如何在ajax“成功:函数()”中处理这个结果?
使用jquery Autocomplete这很容易,因为我可以返回一个 Json 对象列表。
[jquery Autocomplete process data example]
...
success: function (data) {
response($.map(data, function (item) {
return { label: item.Id, value: item.Value, id: item.Id, data: item };
})
...
但这不适用于 boostrap Typeahead。
谁能帮我?
谢谢。