我有一个登录表单,我正在使用 ExtJS 5。我正在尝试使用我在 4+ 中使用的函数来获取对表单的引用,但没有运气。
下面是表格:
Ext.require([
'Ext.form.*',
'Ext.Img',
'Ext.tip.QuickTipManager'
]);
Ext.define('APP.view.core.forms.Loginform', {
extend: 'Ext.window.Window',
xtype: 'form-login',
id: 'loginForm',
title: 'Login',
frame:true,
width: 320,
bodyPadding: 10,
defaultType: 'textfield',
items: [{
allowBlank: false,
fieldLabel: 'Email',
name: 'email',
emptyText: 'test@example.com'
}, {
allowBlank: false,
fieldLabel: 'Password',
name: 'password',
emptyText: 'password',
inputType: 'password'
}],
buttons: [{
text:'Login',
action: 'loginSubmit'
}],
initComponent: function() {
this.defaults = {
anchor: '100%',
labelWidth: 120
};
this.callParent(arguments);
}
});
这是我的控制器(我不知道 ExtJS 5 采用的 MVVM 方式):
init: function() {
this.control({
// Login form button
'button[action=loginSubmit]' : {
click: this.loginAction
}
});
},
loginAction: function(button, event) {
console.info('login button interaction.');
// Reference to the the window
var loginWindow = button.up('window');
var loginForm = loginWindow.down('form-login');
console.log(loginForm.getValues());
var loginMask = new Ext.LoadMask({
target: Ext.getCmp('loginForm'),
msg: "Please wait."
}).show();
// Send AJAX request
Ext.Ajax.request({
url: '/user/login',
method: 'post',
success: function(response){
var responseValues = Ext.decode(response.responseText);
loginWindow.close();
//Didn't return a 404 or 500 error, hide mask
loginMask.hide();
//Show user success message
Ext.Msg.show({
title: 'Login successful',
msg: responseValues.msg,
buttons: Ext.Msg.OK
});
//refresh store from combobox value
//var store = Ext.getCmp('adminslist').getStore();
//store.load();
},
failure: function(){
loginWindow.close();
loginMask.hide();
Ext.Msg.show({
title: 'Login failed',
msg: 'Login failed please contact the development team',
buttons: Ext.Msg.OK,
icon: Ext.Msg.ERROR
});
}
});
},
本节我试图获取对表单的引用,然后是对值的引用......
// Reference to the the window
var loginWindow = button.up('window');
var loginForm = loginWindow.down('form-login');
console.log(loginForm.getValues());
目前我有一个使用的工作,var email = Ext.getCmp('emailField').getValue();
但我想在将来正确引用该表格,以便我可以一次获得所有值。
无论我尝试什么,表单都返回为空,有什么想法吗?:/
更新:控制台日志。
var form = Ext.getCmp('loginForm');
console.log(form.getValues());
输出:TypeError:form.getValues 不是函数
var form = Ext.getCmp('loginForm');
console.log(form.getForm());
输出:TypeError:form.getForm 不是函数
console.log(form);
输出: http: //grab.by/yg6C