我写了一个在本地主机上真正完美的代码,但是在我的生产服务器上,我显示错误,提交按钮上的成功事件的Response.Result参数未定义,但我的本地服务器上的一切都正常,我重新发布了服务器上的主extjs包,认为有些文件已损坏,问题仍然存在,请我不知道还能做什么,我的代码如下所示。
给出问题的主线是“resp.result.data.level;”
Ext.onReady(function(){ 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"
}
}]
});
答案 0 :(得分:0)
检查server / login.ashx文件。如果它在您用于检查本地实例的同一浏览器中工作,则可能不是代码。我很确定它是一个login.ashx错误,而不是一个Javascript错误。