使用Ajax选择2 4.0.0初始值

时间:2015-05-19 04:07:22

标签: jquery-select2-4

我有一个从Ajax数组填充的select2 v4.0.0。如果我设置select2的val我可以通过javascript调试看到它已经选择了正确的项目(在我的情况下为#3),但是这没有显示在选择框中,它仍然显示占位符。 enter image description here

我应该看到这样的事情: enter image description here

在我的表单字段中:

<input name="creditor_id" type="hidden" value="3">
<div class="form-group minimal form-gap-after">
    <span class="col-xs-3 control-label minimal">
        <label for="Creditor:">Creditor:</label>
    </span>
    <div class="col-xs-9">
        <div class="input-group col-xs-8 pull-left select2-bootstrap-prepend">
            <select class="creditor_select2 input-xlarge form-control minimal select2 col-xs-8">
                <option></option>
            </select>
        </div>
    </div>
</div>

我的javascript:

var initial_creditor_id = "3";
$(".creditor_select2").select2({
    ajax: {
       url: "/admin/api/transactions/creditorlist",
       dataType: 'json',
       delay: 250,
       data: function (params) {
           return {
                q: params.term,
                c_id: initial_creditor_id,
                page: params.page
           };
       },
       processResults: function (data, page) {
            return {
                results: data
            };
       },
       cache: true
   },
   placeholder: "Search for a Creditor",
   width: "element",
   theme: "bootstrap",
   allowClear: true
   }).on("select2:select", function (e) {
      var selected = e.params.data;
      if (typeof selected !== "undefined") {
           $("[name='creditor_id']").val(selected.creditor_id);
           $("#allocationsDiv").hide();
           $("[name='amount_cash']").val("");
           $("[name='amount_cheque']").val("");
           $("[name='amount_direct']").val("");
           $("[name='amount_creditcard']").val("");
        }
    }).on("select2:unselecting", function (e) {
        $("form").each(function () {
            this.reset()
        });
        ("#allocationsDiv").hide();
        $("[name='creditor_id']").val("");
    }).val(initial_creditor_id);

如何让选择框显示所选项而不是占位符?我应该将此作为AJAX JSON响应的一部分发送吗?

过去,Select2需要一个名为initSelection的选项,该选项在使用自定义数据源时定义,允许确定组件的初始选择。这在v3.5中对我来说很好。

12 个答案:

答案 0 :(得分:104)

你正在做大多数事情,看起来你遇到的唯一问题是你在设置新值后没有触发change方法。如果没有change事件,则Select2无法知道基础值已更改,因此它只显示占位符。将你的最后一部分改为

.val(initial_creditor_id).trigger('change');

应该修复您的问题,您应该立即看到UI更新。

假设您已<option>value initial_creditor_id。如果您没有选择2,并且浏览器实际上无法更改该值,因为没有可以切换到的选项,并且Select2将不会检测到新值。我注意到您的<select>只包含一个选项,即占位符选项,这意味着您需要手动创建新的<option>

var $option = $("<option selected></option>").val(initial_creditor_id).text("Whatever Select2 should display");

然后将其附加到您初始化Select2的<select>上。您可能需要从外部源获取文本,这是initSelection过去使用的地方,这仍然可以使用Select2 4.0.0。与标准选择一样,这意味着您必须使AJAX请求检索值,然后动态设置<option>文本进行调整。

var $select = $('.creditor_select2');

$select.select2(/* ... */); // initialize Select2 and any events

var $option = $('<option selected>Loading...</option>').val(initial_creditor_id);

$select.append($option).trigger('change'); // append the option and update Select2

$.ajax({ // make the request for the selected data object
  type: 'GET',
  url: '/api/for/single/creditor/' + initial_creditor_id,
  dataType: 'json'
}).then(function (data) {
  // Here we should have the data object
  $option.text(data.text).val(data.id); // update the text that is displayed (and maybe even the value)
  $option.removeData(); // remove any caching data that might be associated
  $select.trigger('change'); // notify JavaScript components of possible changes
});

虽然这可能看起来像很多代码,但完全按照的方式执行非Select2选择框以确保所有更改都已完成。

答案 1 :(得分:27)

我所做的更干净,需要制作两个阵列:

  • 一个包含带有id和文本的Object列表(在我的例子中,它的id和名称,取决于你的templateResult)(它是你从ajax查询得到的)
  • 第二个只是一个id数组(选择值)

我使用第一个数组作为数据初始化select2,第二个作为val。

一个示例函数,其参数为id:name。

的dict
function initMyList(values) {
    var selected = [];
    var initials = [];

    for (var s in values) {
        initials.push({id: s, name: values[s].name});
        selected.push(s);
    }

    $('#myselect2').select2({
        data: initials,
        ajax: {
            url: "/path/to/value/",
            dataType: 'json',
            delay: 250,
            data: function (params) {
                return {
                    term: params.term,
                    page: params.page || 1,
                };
            },
            processResults: function (data, params) {
                params.page = params.page || 1;

                return {
                    results: data.items,
                    pagination: {
                        more: (params.page * 30) < data.total_count
                    }
                };
            },
            cache: true
        },
        minimumInputLength: 1,
        tokenSeparators: [",", " "],
        placeholder: "Select none, one or many values",
        templateResult: function (item) { return item.name; },
        templateSelection: function (item) { return item.name; },
        matcher: function(term, text) { return text.name.toUpperCase().indexOf(term.toUpperCase()) != -1; },
    });

    $('#myselect2').val(selected).trigger('change');
}

您可以使用ajax调用提供initials值,并使用jquery promises进行select2初始化。

答案 2 :(得分:5)

被迫trigger('change')的问题让我疯狂,因为我在change触发器中有自定义代码,只有在用户更改下拉列表中的选项时才会触发。 IMO,在开始时设置初始值时不应触发更改。

我挖得很深,发现了以下内容:https://github.com/select2/select2/issues/3620

示例:

$dropDown.val(1).trigger('change.select2');

答案 3 :(得分:3)

我没有看到人们真正回答的一个场景是,当选项是AJAX来源时如何进行预选,你可以选择多个。由于这是AJAX预选的首选页面,我将在此处添加我的解决方案。

$('#mySelect').select2({
    ajax: {
        url: endpoint,
        dataType: 'json',
        data: [
            { // Each of these gets processed by fnRenderResults.
                id: usersId,
                text: usersFullName,
                full_name: usersFullName,
                email: usersEmail,
                image_url: usersImageUrl,
                selected: true // Causes the selection to actually get selected.
            }
        ],
        processResults: function(data) {

            return {
                results: data.users,
                pagination: {
                    more: data.next !== null
                }
            };

        }
    },
    templateResult: fnRenderResults,
    templateSelection: fnRenderSelection, // Renders the result with my own style
    selectOnClose: true
}); 

答案 4 :(得分:3)

如果您使用的是templateSelection和ajax,则其他一些答案可能无效。当您的数据对象使用除id和text之外的其他值时,似乎创建新的option元素并设置valuetext将无法满足模板方法。

这对我有用:

$("#selectElem").select2({
  ajax: { ... },
  data: [YOUR_DEFAULT_OBJECT],
  templateSelection: yourCustomTemplate
} 

在这里查看jsFiddle:https://jsfiddle.net/shanabus/f8h1xnv4

就我而言,我必须processResults,因为我的数据不包含所需的idtext字段。如果您需要这样做,您还需要通过相同的功能运行初始选择。像这样:

$(".js-select2").select2({
  ajax: {
    url: SOME_URL,
    processResults: processData
  },
  data: processData([YOUR_INIT_OBJECT]).results,
  minimumInputLength: 1,
  templateSelection: myCustomTemplate
});

function processData(data) {
  var mapdata = $.map(data, function (obj) {      
    obj.id = obj.Id;
    obj.text = '[' + obj.Code + '] ' + obj.Description;
    return obj;
  });
  return { results: mapdata }; 
}

function myCustomTemplate(item) {
     return '<strong>' + item.Code + '</strong> - ' + item.Description;
}

答案 5 :(得分:3)

这对我有用......

不要使用jQuery,只使用HTML:创建选项值,您将显示为已选择。 如果ID在 select2数据中,则会自动选择。

<select id="select2" name="mySelect2">
  <option value="mySelectedValue">
        Hello, I'm here!
  </option>
</select>

Select2.org - Default Pre Selected values

答案 6 :(得分:1)

花了几个小时寻找解决方案后,我决定创建自己的解决方案。他是:

 function CustomInitSelect2(element, options) {
            if (options.url) {
                $.ajax({
                    type: 'GET',
                    url: options.url,
                    dataType: 'json'
                }).then(function (data) {
                    element.select2({
                        data: data
                    });
                    if (options.initialValue) {
                        element.val(options.initialValue).trigger('change');
                    }
                });
            }
        }

您可以使用此功能初始化选择:

$('.select2').each(function (index, element) {
            var item = $(element);
            if (item.data('url')) {
                CustomInitSelect2(item, {
                    url: item.data('url'),
                    initialValue: item.data('value')
                });
            }
            else {
                item.select2();
            }
        });

当然,这是html:

<select class="form-control select2" id="test1" data-url="mysite/load" data-value="123"></select>

答案 7 :(得分:0)

我添加这个答案主要是因为我不能在上面发表评论!我发现这是@Nicki和她的jsfiddle https://jsfiddle.net/57co6c95/的评论,最终让我觉得这个有用。

除此之外,它还提供了所需json格式的示例。我必须做的唯一改变是我的初始结果以与其他ajax调用相同的格式返回,所以我不得不使用

$option.text(data[0].text).val(data[0].id);

而不是

$option.text(data.text).val(data.id);

答案 8 :(得分:0)

使用select2 4.0.3的de initial seleted值创建简单的ajax组合

<select name="mycombo" id="mycombo""></select>                   
<script>
document.addEventListener("DOMContentLoaded", function (event) {
    selectMaker.create('table', 'idname', '1', $("#mycombo"), 2, 'type');                                
});
</script>  

library .js

var selectMaker = {
create: function (table, fieldname, initialSelected, input, minimumInputLength = 3, type ='',placeholder = 'Select a element') {
    if (input.data('select2')) {
        input.select2("destroy");
    }
    input.select2({
        placeholder: placeholder,
        width: '100%',
        minimumInputLength: minimumInputLength,
        containerCssClass: type,
        dropdownCssClass: type,
        ajax: {
            url: 'ajaxValues.php?getQuery=true&table=' + table + '&fieldname=' + fieldname + '&type=' + type,
            type: 'post',
            dataType: 'json',
            contentType: "application/json",
            delay: 250,
            data: function (params) {
                return {
                    term: params.term, // search term
                    page: params.page
                };
            },
            processResults: function (data) {
                return {
                    results: $.map(data.items, function (item) {
                        return {
                            text: item.name,
                            id: item.id
                        }
                    })
                };
            }
        }
    });
    if (initialSelected>0) {
        var $option = $('<option selected>Cargando...</option>').val(0);
        input.append($option).trigger('change'); // append the option and update Select2
        $.ajax({// make the request for the selected data object
            type: 'GET',
            url: 'ajaxValues.php?getQuery=true&table=' + table + '&fieldname=' + fieldname + '&type=' + type + '&initialSelected=' + initialSelected,
            dataType: 'json'
        }).then(function (data) {
            // Here we should have the data object
            $option.text(data.items[0].name).val(data.items[0].id); // update the text that is displayed (and maybe even the value)
            $option.removeData(); // remove any caching data that might be associated
            input.trigger('change'); // notify JavaScript components of possible changes
        });
    }
}
};

和php服务器端

<?php
if (isset($_GET['getQuery']) && isset($_GET['table']) && isset($_GET['fieldname'])) {
//parametros carga de petición
parse_str(file_get_contents("php://input"), $data);
$data = (object) $data;
if (isset($data->term)) {
    $term = pSQL($data->term);
}else{
    $term = '';
}
if (isset($_GET['initialSelected'])){
    $id =pSQL($_GET['initialSelected']);
}else{
    $id = '';
}
if ($_GET['table'] == 'mytable' && $_GET['fieldname'] == 'mycolname' && $_GET['type'] == 'mytype') {

    if (empty($id)){
        $where = "and name like '%" . $term . "%'";
    }else{
         $where = "and id= ".$id;
    }

    $rows = yourarrayfunctionfromsql("SELECT id, name 
                    FROM yourtable
                    WHERE 1 " . $where . "
                    ORDER BY name ");
}

$items = array("items" => $rows);
$var = json_encode($items);
echo $var;
?>

答案 9 :(得分:0)

对于简单的语义解决方案,我更喜欢在HTML中定义初始值,例如:

<select name="myfield" data-placeholder="Select an option">
    <option value="initial-value" selected>Initial text</option>
</select>

因此,当我致电$('select').select2({ ajax: {...}});时,初始值为initial-value,其选项文字为Initial text

我目前的Select2版本是4.0.3,但我认为它与其他版本具有很好的兼容性。

答案 10 :(得分:0)

https://github.com/select2/select2/issues/4272 只有这样才能解决我的问题。 即使您通过选项设置了默认值,也必须设置对象的格式,该对象具有text属性,这就是您要在选项中显示的内容。 因此,格式函数必须使用||选择不为空的属性。

答案 11 :(得分:-4)

你好几乎要退出这个并回去选择3.5.1。但最后我得到了答案!

$('#test').select2({
    placeholder: "Select a Country",
    minimumResultsForSearch: 2,
    ajax: {
        url: '...',
        dataType: 'json',
        cache: false,
        data: function (params) {
                var queryParameters = {
                    q: params.term
                }
                return queryParameters;
        },
        processResults: function (data) {
            return {
                results: data.items
            };
        }
    }
});

var option1 = new Option("new",true, true);

$('#status').append(option1);

$('#status').trigger('change');

请确保新选项是select2选项之一。我是通过json得到的。