我是 Select2 的新手,在集成 AJAX 时遇到了麻烦。当我搜索时,没有根据查询过滤结果。
下面是它的外观: http: //i.imgur.com/dAPSSDH.png - 结果中正确的字符带有下划线,但没有过滤掉任何内容。在我的非 ajax Select2 和我看到的示例中,过滤似乎是自动发生的,所以我很犹豫是否要编写自定义过滤器,因为可能已经内置了更好的过滤器。
这是我的代码:
<script>
$("#search_bar").select2({
placeholder: "Search for another Concept",
minimumInputLength: 1,
ajax: { // instead of writing the function to execute the request we use Select2's convenient helper
url: "/concepts/names_for_search",
dataType: 'json',
data: function (term, page) {
return {
q: term, // search term
page: page
};
},
results: function (data, page) {
return { results: data};
}
},
});
</script>
另外,这是我的 JSON 示例:
[{"id":1,"text":"Limits"},{"id":2,"text":"Derivatives"},{"id":3,"text":"One-Sided Limits"},{"id":4,"text":"Formal Definition of a limit"}]
有任何想法吗?希望我只是在做一些愚蠢的事情,这是一个快速修复。提前感谢您的帮助。