I created a SingletonClass
in ExtJS 5.1 with values numero
and texto
, i can execute gets and sets but if i try to execute any method of that SingletonClass shows values as undefined
.
//SingletonClass.js - Ampliación 8
Ext.define('js.SingletonClass', {
singleton : true,
config : {
numero : 6,
texto : "nulo"
},
elNumero : function () {
alert("El número de la clase es: " + this.numero);
},
elTexto : function () {
alert("El texto de la clase es: " + js.SingletonClass.getTexto());
}
});
as you can see i tried with this.numero
and another method with js.SingletonClass.getTexto()
but not works
// APP.js - Instanciar clase singleton
js.SingletonClass.setNumero(10);
alert(js.SingletonClass.getNumero()); // Show: '10'
js.SingletonClass.elNumero(); // Undefined value
js.SingletonClass.elTexto(); // Undefined value
How can i access from my SingletonClass to their own attributes?
Two things:
initConfig
in your constructor. This applies to singletons too.this.numero
. Usethis.getNumero()
instead.All together: