EXTJS 4.0.2 XML 데이터

706 단어 xmlAjaxuserurlExtJs
GB 2312 랑 UTF - 8 다 쓸 수 있어 요.
var departmentgrid_store = Ext.create('Ext.data.Store', {
        model: 'User',
        proxy: {
            type: 'ajax',
            url: "http://localhost:3271/fontweb/ajaxdouser.aspx?showorgweekstatus_xml=1&week=42&year=2011",
            reader: {
                type: 'xml',
                record: 'items',
                root:"root"
            }
        }
    });
    departmentgrid_store.load();

model 은 xml 용기 로 record 각 줄 의 노드 이름 을 표시 합 니 다.
proxy 전송 담당
 
store 는 바로 위의 두 물건 의 연합 이다.

좋은 웹페이지 즐겨찾기