嗨,我正在使用 select2 远程获取数据,然后用户可以键入搜索字符串,它只返回匹配的数据
到目前为止,我的选择 2 中有我的 ajax 调用
ajax: {
url: "data/more.json",
dataType: 'json',
quietMillis: 100,
data: function (term, page) { // page is the one-based page number tracked by Select2
return {
q: term, //search term
page_limit: 10, // page size
page: page // page number
};
},
results: function (data, page) {
var more = (page * 10) < data.total;
console.log(more);
console.log(data.data.moreList);
// notice we return the value of more so Select2 knows if more results can be loaded
return {results: data.data.moreList, more: more};
}
}
这是json文件
{"data": {
"moreList": [{
"id": "1",
"label": "Type",
"jsonFile": "type.json"
},{
"id": "2",
"label": "Primary Applicant Name",
"jsonFile": "primary.json"
},{
"id": "3",
"label": "Address",
"jsonFile": "address.json"
},{
"id": "4",
"label": "Product",
"jsonFile": "product.json"
},{
"id": "5",
"label": "Verification",
"jsonFile": "verification.json"
},{
"id": "6",
"label": "Documents",
"jsonFile": "documents.json"
},{
"id": "7",
"label": "Suburb",
"jsonFile": "suburb.json"
},{
"id": "8",
"label": "State",
"jsonFile": "state.json"
}]
}
}
当我现在搜索时,它会返回 json 中的所有结果,而不仅仅是输入的结果 - 我真的只是希望它显示输入的内容,如果有任何结果
如果有更好的方法可以做到这一点,愿意做另一种方式
显然,传递 q 是烂番茄有 api 的方式,而没有放置 json 设置
我最终需要设置一个 api 调用来进行服务器调用并传递这些变量,但我想知道我是否可以在原型设计时只搜索 JSON 文件
干杯