我写了任何文字,它显示了与文字不符的结果。 无论我在字段中插入什么,select2都会给出所有结果。
$("#UserCliente").select2({
minimumInputLength: 3,
ajax: { // instead of writing the function to execute the request we use Select2's convenient helper
url: "../clients/listaclients/",
dataType: 'json',
data: function (term) {
return {
term: term, // search term
};
},
results: function (data) { // parse the results into the format expected by Select2.
// since we are using custom formatting functions we do not need to alter remote JSON data
return {results: data};
}
},
});
发生了什么事?
答案 0 :(得分:1)
我找到了解决方案。
很简单:我的json总是返回所有结果。我在php中进行了更改以搜索term
并获得结果。
感谢