Sencha Touch 小細節之----store請求參數爲xml使其能與webservice結合

var myStore = Ext.create("Ext.data.Store", {
    model: "User",
    proxy: {
        type: "ajax",
        url : "/users.json",
        writer : {
        type: "xml"//改變請求參數格式爲xml
        },
        reader: {
            type: "xml",
            rootProperty: "users"
        }
    },
    autoLoad: true});
相關文章
相關標籤/搜索