EXTJS sore执行sync()方法后,callback中不能执行rejecteChangs()

    var systemUsersStore = this.getSystemUsersStore();
    systemUsersStore.insert(0, record);
    systemUsersStore.sync({
        callback : function(batch) {
            //ExtJS4中,返回数据在batch.proxy.reader.jsonData
            if (batch.proxy.reader.rawData.success) {
                Ext.Msg.alert('提示信息', batch.proxy.reader.rawData.msg);
                win.close();
            } else if (null == batch.proxy.reader.rawData.success) {
                systemUsersStore.rejectChanges();
                Ext.Msg.alert('提示信息', '添加失败');
            } else {
                systemUsersStore.rejectChanges();
                Ext.Msg.alert('提示信息', batch.proxy.reader.rawData.msg);
            }
        },
        scope : this
    });

当callback函数执行的时候,systemUsersStore已经完成了同步操作,在执行rejectChanges()就没效果了。求解决方案。