作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Select2 和 ajax 选项,它是一个多选框。我能够第一次选择记录。但是在选择第一个之后,如果我尝试选择下一个,它就不起作用。
$('#select2_ajax_complex_id').select2({
tags: true,
maximumSelectionSize: 10,
minimumResultsForSearch: Infinity,
multiple: true,
minimumInputLength: 1,
placeholder: "Search Employee",
//data:o,
id: function(i) {
return i;
},
initSelection: function(element, callback) {
},
ajax: {
type: 'post',
url: "/echo/json/",
allowClear: true,
dataType: 'json',
delay: 250,
params: {
contentType: "application/json"
},
data: function(term, page) {
//Code for dummy ajax response
return {
json: complex_employee_response,
delay: 0
};
},
results: function(data, page) {
return {
results: data
};
},
cache: false
},
formatResult: function(i) {
return '<div>' + i.name + '(' + i.role + ')' + '</div>';
}, // Formats results in drop down
formatSelection: function(i) {
return '<div>' + i.name + '(' + i.role + ')' + '</div>';
}, //Formats result that is selected
dropdownCssClass: "bigdrop", // apply css that makes the dropdown taller
escapeMarkup: function(m) {
return m;
} // we do not want to escape markup since we are displaying html in results
})
有人可以看一下并帮助解决这个问题吗?
最佳答案
从代码中删除以下 block
//data:o,
id: function(i) {
return i;
},
initSelection: function(element, callback) {
},
通过使用此代码,您的问题将得到解决
我已经为相同的内容创建了一个演示[在您的示例中进行了编辑]
只需引用此网址
关于javascript - 第二次选择时 Select2 显示 "No result found"消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59703494/
我是一名优秀的程序员,十分优秀!