编程语言
首页 > 编程语言> > javascript – Select2(4.00)在使用ajax时在onSelect事件中返回undefined

javascript – Select2(4.00)在使用ajax时在onSelect事件中返回undefined

作者:互联网

我正在使用Select2(版本4.00)并使用ajax方法加载远程数据.

我需要检索所选选项的标题,但是在select2中:select事件数据是unifined

我的代码:

 $(".js-data-action-terms").select2({
    ajax: {
        url: ajaxurl + "?action=terms",
        dataType: 'json',
        data: function (params) {
            return {
                q: params.term, // search term
                page: params.page
            };
        },
        processResults: function (data, page) {
            return {
                results: data.items
            };
        },
        cache: false
    },
    escapeMarkup: function (markup) {
        return markup;
    },
    minimumInputLength: 1,
    templateResult: formatRepo,
    templateSelection: formatRepoSelection
});

$('.js-data-action-terms').on("select2:select", function(e) {
    console.log(e);
});

结果日志:

enter image description here

解决方法:

在Select2 4.0.0中,所选对象已从evt.data属性移动到evt.params.data.现在,Select2中事件的所有额外数据都放在evt.params中以保持一致性.

标签:jquery,javascript,ajax,jquery-select2,jquery-select2-4
来源: https://codeday.me/bug/20190623/1271881.html