我遇到了select2组件(jQuery)的问题。 我有这个代码:
$('#username').select2({
width: "400px",
placeholder: "Selecteer 1 of meerder paritaire comités",
style: "display; inline-block",
minimumInputLength: 2,
multiple: true,
ajax: {
url: "/Prospect/_LoadParComs/",
dataType: "json",
type: "GET",
data: function (searchTerm) {
return {
query: searchTerm
}
},
results: function (data, page) {
return { results: data }
}
}
});
现在它可以工作,每次我点击htmlelement我的数据被调用,我看到结果。当我点击一个项目时,该项目会获得htmlelement并且确定。但每次我点击元素它都会返回以检索我的数据,这需要时间,至少5秒。 是不是可以加载数据1次并使用它?无需一次又一次地获取数据?
亲切的问候