gpt4 book ai didi

javascript - 道场自动完成

转载 作者:行者123 更新时间:2023-11-29 15:49:04 27 4
gpt4 key购买 nike

我可以使用 dijit.form.FilteringSelect 来显示下拉框。但它立即从商店 dojo.data.ItemFileReadStore 请求所有我不想要的数据。我希望它使用文本框的当前值查询商店并显示自动完成选项。

最佳答案

一个更完整的例子,如上,但等同于有效。但就我而言,我使用 QueryReadStore

 this.store = new dojox.data.QueryReadStore({
url: 'url',
sortFields : [{attribute: 'attribute', descending: true}],
requestMethod : "get"}
);

callSuggest : function(){
var fetch = {
query: {attribute: "*"},
queryOptions: {
ignoreCase: true,
deep: true
},
serverQuery: this.searchParam,
onComplete: dojo.hitch(this, function(result, dataObject){
//do something
}),
onError: function(errText){
console.error('error');
}
};
this.store.fetch(fetch);
},

关于javascript - 道场自动完成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7950447/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com