嗨 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'*/
}
});