我正在使用Extjs 4.0.7版本的项目,我遇到了问题。 我有一个功能,可以在保存之前验证数据的有效性。它看起来像这样:
me.validateEmployeeSystemSettingsOnSave = function (a,b,c) {
switch (c) {
case 1:{
if(expression)
return {success: false}
if(expression2){
Ext.Msg.show({
title:'',
msg:'',
buttons: Ext.Msg.YESNO,
icon: Ext.Msg.QUESTION,
fn: function (btn) {
if (btn == 'yes') {
return { success: true };
}
else if (btn == 'no') {
return { success: false};
}
},
modal: true
});
}
else return {success: true}; /*problem line*/ //this is the default answer, when function will
//not enter any expression and return {success: true}
}
case 2:{
}
}
我的上述函数在onSave函数中调用,如下所示:
var response = me.validateEmployeeSystemSettingsOnSave(dsa,ssa,daa){
if(response.success){
this.save();
}
else{
}
}
我的问题是:
有没有办法等到Ext.msg.show()的答案,然后才能达到我用/ 问题行 /标记的默认return
。
因为现在该函数没有采用我的是或否答案,它总是返回{success: 'true'}
,这是正常的,考虑到函数的结构如何。
有什么想法吗?谢谢!
答案 0 :(得分:3)
你永远不应该等待,改为使用回调!所以在你的情况下执行回调而不是返回{ success: true };