Typeahead.js获取ID

时间:2016-12-02 23:02:06

标签: ajax typeahead.js

抱歉,但我找不到回复..

我的问题是我无法检索所选产品的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>

抱歉我的英文......

0 个答案:

没有答案