im using Backbone.js to manage models and collections in my app. So, i have a "Usuario" model that match with a user entity in the database. This is the code:
var Usuario = Backbone.Model.extend({
defaults:{
idusuario: 'undefined',
apellido: 'undefined',
nombre: 'undefined',
dni: 'undefined',
dom_usuario: 'undefined',
nombreusuario: 'undefined',
activo: 'undefined',
bloqueado: 'undefined',
recomendar_cambio_clave: 'undefined',
isChecked: false
}
});
All fields of the model are in the entity user, except "isChecked".The isChecked attribute, will be true when the user model is checcked. But when i query by "isChecked" js not recognize the variable:
console.log(this.model.get('isChecked'));
undefined
console.log(this.model.get('nombre'));
Horacio José
Any ideas ?.
UPDATE 1 It is a extract of my code, where load the collection (of Usuario) via Ajax:
var anUrl = $("#ajax-call").val();
var myCol = new CustomCollection({
model: Usuario,
filterAttribute: 'apellido'
});
myCol.fetch({async: false, url: anUrl});
myCol.saveOriginal();
console.log(myCol);
When, show in console the collection, the models not contains "isChecked" property:
With the details you've provided it's hard to know if the error is in your view's initialization or anything else. Using this fiddle you can see your example works perfectly. I created a view in that fiddle trying to mimic your scenario.
However, don't confuse
'undefined'
or"undefined"
withundefined
."undefined" == undefined
and"undefined" === undefined
are both false.So, your model should be:
And then:
Should give your expected result.