https://select2.github.io/examples.html#data-ajax
对于select2,我想:
- 列出一些初始选择,所以对于小列表,我们可以直接选择它。
- 远程搜索长/更多选择。
但是,似乎我不能同时提供两者ajax
和data
参数。
有什么建议吗?谢谢。
添加了代码片段
function installShopSelect2() {
var url = "/ajax/brandEnterprise/findShops.mapi";
"use strict";
$('#shopid').select2({
ajax: {
type: "GET",
url: url,
contentType: "application/json; charset=utf-8",
dataType: "json",
delay: 250,
//async: false,
data: function (params) {
return {
keyword: params.term,
besId: selectedBes,
page: params.page
};
},
processResults: function (data, params) {
// parse the results into the format expected by Select2
// since we are using custom formatting functions we do not need to
// alter the remote JSON data, except to indicate that infinite
// scrolling can be used
params.page = params.page || 1;
return {
results: data,
pagination: {
more: (params.page * 30) < data.total_count
}
};
},
cache: true
},
escapeMarkup: function (markup) {
return markup;
},
//data: $.getJSON(url, {besId: selectedBes, keyword: ''}, function (data) {
// return {results: data};
//}),
placeholder: "--Please search--",
minimumInputLength: 2,
allowClear: true
});
}