これが起こっていることです。ストアの data プロパティを使用してデータをハードコーディングすると正常に動作するリストがありますが、プロキシを使用しようとすると何も表示されません...プロキシはデータを送信することができます &サーバーからデータを受信しますが、リストには何も表示されません...
これはビューです:
Ext.define('MyApp.view.myListView', { 
extend: 'Ext.List',
xtype: 'myListView',
requires: ['MyApp.store.myListStore'],
config: {
    title: 'American Companies',
    grouped: false,
    itemTpl: '{company} {contact}',
    store: 'myListStore',
    onItemDisclosure: true
}});
モデル:
Ext.define('MyApp.model.myListModel', {  
    extend: 'Ext.data.Model',
    config: {
    fields: ['company', 'contact']
   }
});
店舗:
Ext.define('MyApp.store.myListStore', {
    extend: 'Ext.data.Store',
    requires: ['MyApp.model.myListModel', 'MyApp.proxy.myListProxy'],
    config: {
        model: 'MyApp.model.myListModel',
        proxy: 'searchProxy',
        autoLoad: true,
        grouper: {
            groupFn: function (record) {
                return record.get('contact').substr(0, 1);
            }
        }
    }
}); 
プロキシ:
Ext.define('MyApp.proxy.myListProxy', {
    extend: 'Ext.data.proxy.Ajax',
    alias: 'proxy.searchProxy',
    method: 'POST',
    headers: {
        'Accept': 'application/json',
        'Content-Type': 'application/json'
    },
    callbackKey: 'callback',
    type: 'json',
    config: {
        model: 'MyApp.model.myListModel',
        url:  '/myUrl that works',   
        reader: {
            type: 'json',
            rootProperty: 'data' // E.g. {results: [{id: 123, description: 'some     text'}, {...}]},
        }
    },
    read: function (operation, callback, scope) {
           Ext.Ajax.request({
            url: '/myUrl that works',   
            //success: passFn,   // function called on success
            failure: failFn,
            jsonData: {
                "data": {
                    "fields": ["company", "contact"],
                }
            }
        });
    },
    filterParam: undefined,
    /**
     * NOTE: so I can add other params as I needed the params for a search request
     * You could use extraParams instead
     */
    buildRequest: function(operation) {
        var request = this.callParent(arguments);
        var params  = request.getParams();
//        var searchRequest = getSearchRequest(); // helper method
//        if (searchRequest) {
//            Ext.apply(params, searchRequest);
//        }
        return request;
    }
});
function failFn(msg) {
    Ext.Msg.alert('Ajax Error', msg);
}