我寫了一個代碼,真正在本地主機上完美工作,但在我的生產服務器上,我顯示錯誤,提交按鈕附加到成功事件的Response.Result參數未定義,但一切正常本地服務器,我重新張貼在服務器上的主要extjs包,認爲一些文件已損壞,問題仍然存在,請我不知道還有什麼要做,我的代碼列在下面。問題與extjs
給出問題的主線是「resp.result.data.level;」
Ext.onReady(函數(){ Ext.QuickTips.init();
var login = new Ext.FormPanel({
id: 'login_form',
renderTo: 'login2',
url: '../server/login.ashx',
title: 'Enter your Pin Number and Jamb Number',
width: 280,
height: 250,
labelAlign: 'top',
bodyStyle: 'width:300px;height:300px;margin:0 auto;',
frame: true,
items: [
{ xtype: 'textfield', fieldLabel: 'Registration Numberss', name: 'reg', width: '70%', allowBlank: false, minLegth: 5, maxLength: 15 },
{ xtype: 'textfield', fieldLabel: 'Pin Number', name: 'pin', id: 'pin', width: '70%',
allowBlank: false, inputType: 'password', minLegth: 5, maxLength: 15, minLengthText: 'Password must be at least 6 characters long.'
}
],
buttons: [{
text: 'Login',
handler: function() {
pin = Ext.get('pin').getValue();
login.el.mask('Please wait', 'x-mask-loading');
login.getForm().submit({
url: '../server/login.ashx',
success: function (loginForm, resp) {
login.getForm().reset();
var level = resp.result.data.level;
if (level == "0") {
controller.getLayout().setActiveItem(1);
}
else if (level == "1") {
controller.getLayout().setActiveItem(2);
hostelData.load();
}
else {
document.location = "../hostelAllocation/Report.aspx?val=" + pin;
}
},
failure: function (loginForm, resp) {
login.el.unmask();
var status = resp.result.data.status;
var reg = resp.result.data.reg;
if (status == "0") {
Ext.MessageBox.alert('Failure', 'Invalid Pin!');
}
else {
Ext.MessageBox.alert('Failure', 'The pin has been used by another user,<br/> with User Name: ' + reg);
}
}
});
}
},
{ text: 'Cancel',
handler: function() {
document.location = "../index.htm"
}
}]
});
我真的需要知道這個問題的解決方案有什麼幫助嗎? – 2010-10-26 13:21:47
嘗試並找出什麼_is_在'使用Firebug(在'success'和'failure'函數中嘗試'console.log(resp)')來調用resp.result'。 – Wolph 2010-10-26 13:30:37
WoLpH先生,我真的很高興您的專業建議,問題來自我的生產服務器。服務器被配置爲支持DotNet框架2.0,但我在本地服務器上使用了一些.Net 4.0功能。所以我已經解決它,它的工作完美, 感謝和上帝保佑! – 2010-10-28 14:57:09