当我尝试将 FormPanel 的值传递给控制器时,我收到错误消息。
“对象#<HTMLFormElement> 没有方法‘getValues’”
Ext.define('MyApp.view.LoginPage', {
extend: 'Ext.form.FormPanel',
id: 'loginPanel',
standardSubmit: true,
config: {
fullscreen: true,
items: [{
xtype: 'fieldset',
items: [
{
xtype: 'textfield',
name: 'name',
label: 'Kullanıcı Adı'
},
{
xtype: 'passwordfield',
name: 'password',
label: 'Şifre'
}
如何访问控制器对象中的 loginPanel.getValues()?