如何更改Extjs组合下拉列表中的数据?
如何更改Extjs组合下拉列表中的数据?
我有组合框,我正在尝试加载数据。我想将我的数据放置以进行一些reg表达。
这是我的Stroe代码。
Ext.define("MyApp.store.combo.country", {
extend: "Ext.data.Store",
alias:"widget.country",
//autoLoad:true,
fields: [{
name: 'name',type:'string'
},{
name: 'key',type:'int'
}],
proxy: {
type: 'ajax',
method: 'GET',
url: '/myCountry/getName',
reader: {
type: 'json'
}
},
listeners: {
beforeload ( store, operation, eOpts ) {
console.log("combo before load");
},
load: function (_this, records, successful, operation, eOpts) {
var length = records.length;
var htmlRegex = new RegExp("<(\"[^\"]*\"|'[^']*'|[^'\">])*>");
for(var i=0; i<length; i++){
if(htmlRegex.test(records[i].data.name)){
records[i].data.name = records[i].data.name.replace( /(<([^>]+)>)/ig, '');
}
}
}
}
});
现在,当我单击combobox时,我看不到下拉列表中的数据是精明的(执行而无需通过Regexp)。这第二次工作正常。
因此,我的问题是如何在这种情况下更改数据。
我在加载方法中可以看到的taht尝试。(即使在加载方法之前也没有发生
任何事情。)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为最好的方法是使用计算功能。
这样可以确保每次加载或更改商店中的记录时,将会发生正则验证。唯一的缺点是您有另一个领域。
In my opinion the best way to do this is to use the calculate feature.
This ensures that everytime you load or change the records in the store, the regex validation will happen. The only downside is that you have another field.
您可以详细说明定义 转换 或 在所需字段上计算配置,这样您就可以完全避免处理存储侦听器。
主要区别在于,第一个允许您快速转换字段的值,而最后一个使您可以根据其他记录信息的详细信息创建新的属性/字段。
You can elaborate your values defining the convert or the calculate configs on the desired field, so you can totally avoid working on the store listeners.
The main difference is that the first one let you quickly convert the value of the field while the last one give you the possibility to create a new property/field based on the elaboration of the other record's info.