我的问题是我无法检索所选产品的ID。值= 0
我的代码:
$("#recherche").typeahead({
onSelect: function(item) {
alert(item.value); // = 0
},
ajax: {
url: "/personne/autocompletation",
displayField: "nomComplet",
triggerLength: 1,
method: "POST",
dataType: "JSON",
preDispatch: function (query) {
return {
query: query
}
}
},
});
我的代码HTML
<li class="active" data-value="0"><a href="#"><strong>C</strong>alloway</a></li>
抱歉我的英文......