我正在尝试修改别人的 extjs 代码,我真的需要一些帮助。
基本上,当验证用户名/密码时,会调用包含在 index.php 中的dashboard.js。现在我需要做的是在验证用户名/密码后,我需要另一个表单来弹出询问确认号码。这不需要验证(只需检查空字符串),只需在表单中输入,我需要将其保存在会话中。
//index.php
<script>
Ext.onReady( function() {
Web.ip = '<?php print $_SERVER["REMOTE_ADDR"]; ?>';
var sessionInfo = Web.getCookieInfo();
if( sessionInfo ) {
Web.Dashboard.init();
Web.user = sessionInfo;
Web.Dashboard.loadDefault();
} else {
Web.Login.init();
Web.Dashboard.init();
}
});
</script>
//dashboard.js
Web.Dashboard = function() {
var contentPanel = new Ext.Panel({
region: 'center',
layout: 'fit',
margins: '0 5 5 0',
border: true,
html: ''
});
return {
init: function() {
........
}
}
}();
这是我在 onsubmit 函数中调用的成功函数:
success: function( result, request ) {
try {
var obj = Ext.decode( result.responseText );
if( obj.success ) {
var permissions = obj.USER[0].VALUES;
var p = {};
for( var i=0 ; i<permissions.length ; i++ ) {
p[permissions[i].PERMISSION] = true;
}
Web.Dashboard.loadDefault();
} else {
//alert ('got here');
if (obj.ErrorCode == 20410 ) {
th.changePasswordWindow.show();
return;
}
th.loginPanel.form.reset();
th.loginWindow.displayInfo( 'Invalid username/password' );
}
} catch( ex ) {
th.loginWindow.el.unmask();
th.loginPanel.focusUsername();
th.loginPanel.form.reset();
th.loginWindow.displayInfo( 'Error: ' + ex );
}
},