私はajax関数でBootstraptypeaheadを使用しており、IDと説明を返すために正しいJson結果形式が何であるかを知りたいです。先に選択した要素をmvc3モデルにバインドするためのIDが必要です。
これはコードです:
[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「success:function()」で処理するにはどうすればよいですか?
Jsonオブジェクトリストを返すことができるので、 jqueryオートコンプリートを使用すると非常に簡単です。
[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 };
})
...
しかし、それはブーストラップTypeaheadでは機能しません。
誰か助けてもらえますか?
ありがとう。