0

嗨 stackoverflow 社区,

是的,我知道,其他人也有同样的问题,但他们在同一个文件中定义了商店,sencha touch 2 的示例对我有用,但是当我尝试将此代码应用于我的时,我收到此错误:

Uncaught SyntaxError: Unexpected identifier Alertas.js:105 Uncaught Error: 以下类即使文件已加载也未声明:'myMoney.view.Alertas'。请检查其相应文件的源代码是否存在拼写错误:'app/view/Alertas.js

我认为我需要以另一种方式给我的商店打电话,但这是我的问题:

如何调用已为搜索列表定义的商店?

有我的代码:

Ext.define('myMoney.view.Alertas',{
extend: 'Ext.navigation.View',
fullscreen: true,
scrollable: true,
styleHtmlContent: true,
xtype: 'alertas',

config: {
    title: 'Contactos',
    iconCls: 'bookmarks',

    items: [
        {
            xtype: 'list',
            grouped: true,
            ui: 'round',
            title: 'Contactos',
            fullscreen: true,
            itemTpl: '{title}',
            styleHtmlCls: true,
            //cls: 'x-contacts',
            store: 'Contactos',
            itemTpl: [
                '<div class="headshot" style="background-image:url(resources/images/headshots/{headshot});"></div>',
                '{firstName} {lastName}',
                '<span>{title}</span>'
            ].join(''),

            items: [
                {
                    xtype: 'searchfield',
                    placeHolder: 'Buscar contacto...',
                    listeners: {
                        scope: this,
                        clearicontap: this.onSearchClearIconTap,
                        keyup: this.onSearchKeyUp
                    }
                },
            ]
        },
    ]
},

/**
 * Llamado cuando la barra de busqueda tiene un evento keyup
 */
onSearchKeyUp: function(field) {
    //Se obtiene el store y el valor del field
    var value = field.getValue(),
        //store = this.getStore();
            //NOW:
            store = Ext.data.StoreManager.lookup('Contactos');

    //se limpian los filtros actuales del store para comenzar la nueva busqueda
    store.clearFilter();

    //Verificamos que el valor tenga alguna  modificacion
    if (value) {
        //El usuario pudo haber introducido espacion en blanco,asi que los cortamos para poder recorrer todo el valor 
        var searches = value.split(' '),
            regexps = [],
            i;

        //recorremos todo el valor
        for (i = 0; i < searches.length; i++) {
            //si no hay nada continuamos
            if (!searches[i]) continue;

            //Si encontramos algo creamos una expresion regular que es sensible a mayusculas
            regexps.push(new RegExp(searches[i], 'i'));
        }

        //Ahora se filtra el store
        //El metodo se pasara a cada record en el store
        store.filter(function(record) {
            var matched = [];

            //Iteramos a traves de cada expresion regular
            for (i = 0; i < regexps.length; i++) {
                var search = regexps[i],
                    didMatch = record.get('firstName').match(search) || record.get('lastName').match(search);

                //Si coincide el primer o ultimo nombre se coloca en la lista de los que coinciden
                matched.push(didMatch);
            }

            //Si nada se consigue no se retorna nada
            if (regexps.length > 1 && matched.indexOf(false) != -1) {
                return false;
            } else {
                //Si no se muestra lo que se encontro
                return matched[0];
            }
        });
    }
},
/**
 * Llamado cuando el usuario presiona el icono de 'x' en la barra de busqueda
 * Solo que quitan los filtros del store
 */
onSearchClearIconTap: function() {
    //this.getStore().clearFilter();
        //NOW:
        store = Ext.data.StoreManager.lookup('Contactos');
}
/**
 * Metodo llamado para tomar el store
 */
      //I DELETE THIS FUNCTION
/*getStore: function() {
        this.store = 'myMoney.store.Contactos'*/
}
});
4

3 回答 3

0

您需要使用 Ext.StoreManager,以便通过 id 使用指定的商店。

例子:

与这家商店:

Ext.create('Ext.data.Store', {
    model: 'SomeModel',
    storeId: 'myStore'
});

利用

var store = Ext.data.StoreManager.lookup('myStore');

或在视图中使用它:

Ext.create('Ext.view.View', {
    store: 'myStore',
    // other configuration here
});
于 2012-07-17T15:33:50.267 回答
0

请小心吸气剂:)

getStore: function() {
        this.store = 'myMoney.store.Contactos'
}

我认为它打算返回商店,而不仅仅是分配给班级成员。

onSearchKeyUp: function(field) {
    //Se obtiene el store y el valor del field
    var value = field.getValue(),
        store = this.getStore();  // undefined

变量存储始终未定义...

于 2012-07-17T09:38:21.860 回答
0

以上 NeoMorfeo 代码是唯一正确的获取商店价值

您需要使用 Ext.StoreManager,以便通过 id 使用指定的商店。

例子:

与这家商店:

Ext.create('Ext.data.Store', {
    model: 'SomeModel',
    storeId: 'myStore'
});

利用

var store =  Ext.getStore('myStore');

或在视图中使用它:

Ext.create('Ext.view.View', {
    store: 'myStore',
    // other configuration here
});
于 2014-02-03T09:21:54.290 回答