1

我有一个 Perl 脚本,它向我的 EXTJS4 返回一个 XML 格式的 SOAP 请求。这是加载和显示 XML 的代码(这是我在 EXTJS 的第一次尝试):

Ext.onReady(function() {  
Ext.Loader.setConfig({enabled:true});

    Ext.define('accounts', {     
        extend: 'Ext.data.Model',
        fields: [
            {name: 'name', type: 'string'},
            {name: 'origin', type: 'string'}
            ]
    }); 

    var myStore = Ext.create('Ext.data.Store', {
        model: 'accounts',
        proxy: {
            type: 'ajax',
            url: 'cgi-bin/runPerl.pl',
            reader: {
                type: 'xml',
                root: 'soap:Body'
            }
        },
        autoLoad: true
    });

     myStore.on('load', function(store, records, options) {

        var tpl = new Ext.XTemplate(
            '<tpl for="Accounts">',
            '<h1>{values.data.name}</h1>',
            '<h1>{values.data.origin}</h1>',
            '</tpl>'
        );

        //tpl.append(Ext.get("output"), store.getRange());

    });

这是 XML:

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:getAccountsResponse xmlns:ns2="http://services.nms.nimsoft.com/">
<Accounts>
<accountId>1</accountId>
<address></address>
<city></city>
<country></country>
<creationDate>2012-04-11T00:00:00+01:00</creationDate>
<description></description>
<fax></fax>
<name>Network</name>
<origin>Support_4</origin>
<phone></phone>
<postalCode></postalCode>
<state></state>
<webSite></webSite>
</Accounts>
</ns2:getAccountsResponse>
</soap:Body>
</soap:Envelope>

Firebug 显示以下内容:

Ext.DomQuery.pseudos[name] is not a function
[Break On This Error] 

return Ext.DomQuery.pseudos[name](cs, value);

我已将其缩小到 tpl 部分,但我一生无法理解我得到的错误。

任何人都可以提供建议吗?谢谢!

4

1 回答 1

1

尝试将您的读者定义更改为:

reader: {
    type: 'xml',
    // root: 'soap:Body',
    record: 'Accounts'
}
于 2012-05-25T12:07:05.643 回答