我已经阅读了 this、this、this以及根据文档最重要的 here,但它们都不适合我。我正在尝试使用 AJAX select2。我正在尝试制作一个通用的“选择”项目。
因此,对于所有具有data-select2-json
属性的元素,我将 aselect2
与data-select2-json
值中的 ajax URL 一起应用。
$('[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
});
});
它运作良好!
服务器发送的 JSON 格式始终如下:
{"items":
[{"item": "Fran\u00e7ais", "id": 1},
{"item": "Finlandais", "id": 5},
{"item": "Chinois simplifi\u00e9", "id": 15}
],
"total": 3}
它非常接近您可以在文档中找到的 AJAX 示例。我的问题是 AJAX 初始化:我想在 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({..
上面的代码)初始化,但这不起作用并给我空白值:
注意:Kevin Brown 给出的解决方案也不起作用,并且给了我完全相同的结果。
&init=1
另一种解决方案是在 AJAX 中使用诸如“ ”(或类似的东西)之类的参数向 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;
}