select2 4.0 AJAX预填怎么样?

时间:2015-12-21 22:50:10

标签: javascript jquery json ajax select2

我已经阅读了thisthisthis并根据文档the most important here,但这些都不适合我。 我正在尝试使用AJAX select2。我正在尝试制作一个通用的“选择”项目。

因此,对于具有data-select2-json属性的所有元素,我将select2应用于data-select2-json值中的ajax网址。

$('[data-select2-json!=""][data-select2-json]').each(function() {
    var url = $(this).attr('data-select2-json');
    var pg_size = $(this).attr('data-select2-page-size') | 30;
    $(this).select2({
        language: language_code,
        tokenSeparators: [',', ' '],
        ajax: {
            url: url,
            dataType: 'json',
            delay: 300,
            data: function (params) {
                return {
                    q: params.term, // -> q=[search term]
                    page: params.page // -> page=[no page]
                };
            },
            processResults: function (data, params) {
                params.page = params.page || 1;
                console.log(data.items);
                return {
                    results: data.items,
                    pagination: {
                      more: (params.page * pg_size) < data.total
                    }
                };
            },
            cache: true
        },
        // let our custom formatter work
        escapeMarkup: function (markup) { return markup; },
        minimumInputLength: 1,
        templateResult: formatRepo,
        templateSelection: formatRepoSelection
    });
});

效果很好!

works well

服务器发送的JSON总是这样格式化:

{"items":
    [{"item": "Fran\u00e7ais", "id": 1},
     {"item": "Finlandais", "id": 5},
     {"item": "Chinois simplifi\u00e9", "id": 15}
    ],
"total": 3}

这与你{AJ}样本can find in the documentation非常接近。我的问题是AJAX initiatilize:我想要在HTML中添加值:

<select multiple="multiple" class="form-control"
        data-select2-json="/fr/chez-moi/tags/langues"
        multiple="multiple"
        name="known_languages">
    <option value="1" selected="selected">Français</option>
    <option value="2" selected="selected">Chinois simplifié</option>
</select>

然后使用select2(=上面的代码$(this).select2({..)初始化,但这不起作用并给我空白值:

blank value

注意:the solution here given by Kevin Brown也不起作用,并给出了完全相同的结果。

另一个解决方案是在AJAX中使用参数“&init=1”(或类似的东西)询问URL,以便服务器为每个值发送带有checked: true等参数的结果,我将使用这些值调用select2

关于如何预填select2的文档中没有任何内容。我该怎么办?

以下是我的其他功能:

function item_or_text(obj) {
    if (typeof(obj.item)!='undefined') {
        return (obj.item.length ? obj.item : obj.text);
    }
    return obj.text;
}

function formatRepo(data) {
    if (data.loading) return data.text;
    var markup = item_or_text(data);
    console.log('formatRepo', data, markup);
    return markup;
}

function formatRepoSelection(item) {
    var retour = item_or_text(item);
    console.log('formatRepoSelection', item, item.item, retour);
    return retour;
}

2 个答案:

答案 0 :(得分:3)

我使用working example on jsfiddle页面上提供的示例代码创建了Select2 Examples。我只需要更改他们的示例选择标记以接受像你的那样多个:

<select multiple="multiple" ...

我还添加了第二个默认选择选项:

<option value="3620194" selected="selected">select2/select2</option>
<option value="317757" selected="selected">Modernizr/Modernizr</option>

如果你看一下这个小提琴,你就会看到它的运作方式。

您没有包含templateSelection: formatRepoSelection方法的代码。我的猜测是方法是导致问题的原因。示例页面上使用的代码是:

function formatRepoSelection(repo) {
  return repo.full_name || repo.text;
}

虽然我不知道您的formatRepoSelection代码是什么,但我认为如果您将其更改为以下内容,您的问题将会得到解决:

function formatRepoSelection(repo) {
  return repo.item;
}

答案 1 :(得分:0)

我如下解决: 在对select元素执行select2()之前,获取它的初始值:

var initval = selector.attr("value");

将其转换为select2后,请使用initval创建一个选项:

if (initval) {
    var option = new Option(initval, initval, true, true);
    selector.append(option).trigger('change');
}

您可以对多值选择元素执行类似的操作。