El servicio RESTful de ExtJS no puede manejar los datos json

Implemento un servicio RESTful simple. Estos son URL de solicitud de descanso y los datos json de respuesta.

http: // localhost: 8080 / RESTfulTestWeb / rest / services / getJson / aupres

{"id":"aupres","passwd":"aaa","age":45,"name":"joseph"}

El problema es que el cliente de objetos ExtJS Store no puede manejar los datos json anteriores. Estos son códigos de cliente ExtJS

Ext.define('extjs.model.Member', {
    extend: 'Ext.data.Model',

    fields : [{
        name : 'id',
        type : 'string'
    }, {
        name : 'passwd',
        type : 'string'
    }, {
        name : 'age',
        type : 'int'
    }, {
        name : 'name',
        type : 'string'
    }]  
});

Ext.onReady(function () {

    var members = Ext.create('Ext.data.Store', {

        model : 'extjs.model.Member',
        //autoLoad : true,
        proxy: {
            type: 'rest',
            url : 'http://localhost:8080/RESTfulTestWeb/rest/services/getJson/aupres',
            reader: {
                type: 'json',
                root: 'id',
            },
            writer: {
                type: 'json'
            },
            listeners: {
                exception: function(proxy, response, operation){
                    Ext.MessageBox.show({
                        title: 'REMOTE EXCEPTION',
                        msg: operation.getError(),
                        icon: Ext.MessageBox.ERROR,
                        buttons: Ext.Msg.OK
                    })
                }
            }

        },
        listeners: {
            load: function(members, operation, success) {
                if(success) {
                    alert('response : ' + members.model.length)
                } else {
                    alert('it failed')
                }
            }
        }
    })

    var onButtonClick = function() {
        members.load()
    }

La respuesta se muestra a continuación

"response : 0"

Parece que mis códigos ExtJS no pueden contener los datos json.

Respuestas a la pregunta(2)

Su respuesta a la pregunta