日期:2014-05-16  浏览次数:20334 次

extjs中的Ext.data.XmlReader必须运行在服务器上吗?
ext 例子程序,xml-grid.html ,运行在服务器上时,正常。
某日,单独运行,报错。
---
不知何故?
附上核心的 xml-grid.js
JScript code
Ext.onReady(function(){

    // create the Data Store
    var store = new Ext.data.Store({
        // load using HTTP
        url: 'sheldon.xml',

        // the return will be XML, so lets set up a reader
        reader: new Ext.data.XmlReader({
               // records will have an "Item" tag
               record: 'Item',
               id: 'ASIN',
               totalRecords: '@total'
           }, [
               // set up the fields mapping into the xml doc
               // The first needs mapping, the others are very basic
               {name: 'Author', mapping: 'ItemAttributes > Author'},
               'Title', 'Manufacturer', 'ProductGroup'
           ])
    });

    // create the grid
    var grid = new Ext.grid.GridPanel({
        store: store,
        columns: [
            {header: "Author", width: 120, dataIndex: 'Author', sortable: true},
            {header: "Title", width: 180, dataIndex: 'Title', sortable: true},
            {header: "Manufacturer", width: 115, dataIndex: 'Manufacturer', sortable: true},
            {header: "Product Group", width: 100, dataIndex: 'ProductGroup', sortable: true}
        ],
        renderTo:'example-grid',
        width:540,
        height:200
    });

    store.load();
});


------解决方案--------------------
探讨

引用:
本地运行就是跨域了,而且如果你不是以http方式去浏览,这个程序还有意义么

我不是很明白,本地 和 HTTP方式 的区别。
仁兄能否,就这个程序,给我解释下。
程序要从 xml 文件中加载数据,这个过程需要用到什么,需要什么支持,也不知道怎么说,tomcat到底提供了什么,浏览器不能提供这些吗?
请大虾给解解惑,谢谢了!