0

嗨,我从服务器返回了以下 xml:代码:

链接文本

我似乎无法正确设置 xml 存储配置。特别是,我希望能够获得自定义标签:名称、内部和引用,它们是返回的结果集的属性。非常感谢!

4

1 回答 1

0

试试这段代码(用你的 xml 源代码替换 test.xml)

    // create the Data Store
var store = new Ext.data.Store({
    // load using HTTP
    url: 'test.xml',
    // the return will be XML, so lets set up a reader
    reader: new Ext.data.XmlReader({
           // records will have an "customer" tag
           record: 'customer',
       }, ['id','field1', 'field2', 'field3'])
});

// create the grid
var grid = new Ext.grid.GridPanel({
    store: store,
    columns: [
        {header: "id", width: 120, dataIndex: 'id', sortable: true},
        {header: "field1", width: 180, dataIndex: 'field1', sortable: true},
        {header: "field2", width: 115, dataIndex: 'field2', sortable: true},
        {header: "field3", width: 100, dataIndex: 'field3', sortable: true}
    ],
    renderTo:'example-grid',
    width:540,
    height:200
});
store.load();

为了获得标签:名称、内部和引荐,我使用了 Ext.DomQuery,它使您能够解析为 xml(尝试用于内部和引荐)

Ext.Ajax.request({
       url: 'test.xml',
       success: function(response){
        console.debug(response);
        if (Ext.DomQuery.selectNode("/rootNode/name", response.responseXML)) {
            var name = Ext.DomQuery.selectValue("/rootNode/name",  response.responseXML);
            console.debug(name);
        } 

       },
       failure: function () { console.log('failure');}
    });
于 2010-11-14T00:39:19.533 回答