0

早晨,

我是 Sencha 的新手。我的 login.js 中有以下代码,它从删除服务器上的 JSON 文档中检索表单字段。它从数据中创建一个数组,我需要 tro 能够使用它来填充表单:

var url = 'http://domainxxx.net/';
loginFields = new Array();
Ext.onReady(function(){var theform = Ext.Ajax.request({
                                    url: url+'login',
                                    type: 'get',
                                    scope: this,
                                    dataType: "JSON",
                                    success: function(response){

                                        formFields = new Array();

                                        var numFields = Ext.JSON.decode(response.responseText).length;
                                        for (var inf=0;inf<numFields;inf++){
                                            afield = new Array();
                                            afield['xtype'] = 'textfield';
                                            afield['name'] = Ext.JSON.decode(response.responseText)[inf].Name;
                                            afield['itemId'] = Ext.JSON.decode(response.responseText)[inf].Name;
                                            afield['required'] = true;
                                            afield['description'] = Ext.JSON.decode(response.responseText)[inf].Description;
                                            afield['placeHolder'] = Ext.JSON.decode(response.responseText)[inf].Description;
                                            afield['maxlength'] = Ext.JSON.decode(response.responseText)[inf].Length;
                                            if(Ext.JSON.decode(response.responseText)[inf].Type == 1){afield['xtype']= 'passwordfield';}
                                            if(Ext.JSON.decode(response.responseText)[inf].Type == 0){afield['xtype']= 'emailfield';}
                                            loginFields.push(afield);    
                                        }

                                        console.log(loginFields);

                                    }
                                })
});

然后问题是使用这个变量来填充表单。我尝试将它放在表单配置中,如下所示,但没有运气。我也尝试使用 localStorage,但这也不起作用。

Ext.define('axis3.view.Login', {
extend: 'Ext.form.Panel',
alias: "widget.loginview",
requires: ['Ext.form.FieldSet', 'Ext.form.Password', 'Ext.Label', 'Ext.Img'],  config: {
    title: 'Login',
    itemId: 'loginform',

    items: [
                {
                    xtype: 'image',
                    src: Ext.Viewport.getOrientation() == 'portrait' ? 'images/logo.png' : 'images/logo.png',
                    style: Ext.Viewport.getOrientation() == 'portrait' ? 'width:271px;height:93px;margin:2em auto' : 'width:271px;height:93px;margin:2em auto'
                },
                {
                    xtype: 'label',
                    html: 'Login failed. Please enter the correct credentials.',
                    itemId: 'signInFailedLabel',
                    hidden: true,
                    hideAnimation: 'fadeOut',
                    showAnimation: 'fadeIn',
                    style: 'color:#990000;margin:5px 0px;'
                },
                {
                    xtype: 'fieldset',
                    title: 'Login',
                    items: [

    FORM VARIABLES IN HERE

                    ]
                },
                {
                    xtype: 'button',
                    itemId: 'logInButton',
                    ui: 'action',
                    padding: '10px',
                    text: 'Log In'
                }
    ],
    listeners: [{............

任何建议都是最受欢迎的

4

1 回答 1

1

您正在使用 aArray而不是Object. 与其说var aField = new Array(),不如说var aField = new Object()

请注意,简而言之,您也可以这样做而不是使用构造函数:

var myArray = [];
car myObject = {};
于 2013-08-06T12:17:01.953 回答