下拉框没有任何选项内容
js代码/* 执行select2方法初始化 */
function select2Execute() {
var dataList = [
{ id: 0, text: 'enhancement' },
{ id: 1, text: 'bug' },
{ id: 2, text: 'duplicate' },
{ id: 3, text: 'invalid' },
{ id: 4, text: 'wontfix' }
];
var dataList1=[{'id':"1","text":"enhancement"}];
$(function() {
/*本地注入方式*/
/*$("select[name='xuewei_id']").select2({
// $('select[id="xuewei_id"]').select2({
// $('#xuewei_id').select2({
// $("#selectSection").find("select.combox").select2({
// $(".select2-selection__choice").select2();
// $(".combox").select2({
placeholder : "请至少选择一个人名",
tags : true,
createTag : function(decorated, params) {
return null;
},
width : '256px',
});*/
//two AJAX获取数据方式
//$("select[name='xuewei_id']").select2({
$(".downList2").select2({
ajax: {
type:'GET',
// url: '/erzhentang/manage/forAjax.do?requestType=12.1',
url: dataList1,
dataType: 'json',
delay: 250,
data: function (params) {
return {
q: params.term, // search term 请求参数
page: params.page
};
},
processResults: function (data, params) {
params.page = params.page || 1;
/*var itemList = [];
var arr = data.result.list
for(item in arr){
itemList.push({id: item, text: arr[item]})
}*/
return {
results: data.items,//itemList
pagination: {
more: (params.page * 2)
}
};
},
cache: true
},