I wrote two classes the other day, where I needed to override and call the overridden method (getQuery).
//parent
function SimpleUser() {
this.firstName = "X";
}
SimpleUser.prototype.getQuery = function(sub) {
//solution for not getting undefined variables
var that = sub || this;
var query = "first="+that.firstName;
return query;
}
//child
function User() {
//extends
this.base = SimpleUser;
//super()
this.base();
//prints "X"
console.log(this.firstName);
this.lastName = "Y";
}
//override
User.prototype.getQuery = function() {
//call parent
var query = SimpleUser.prototype.getQuery.call(this);
query += "&last="+this.lastName;
return query;
}
//prints "first=X"
console.log(new SimpleUser().getQuery());
//prints "first=undefined&last=Y" if I don't use parameter "sub"
console.log(new User().getQuery());
When I call the method "getQuery" from the sub-class, all variables in the parent are undefined. If I call them from the constructor of the sub-class, they're fine.
I solved the problem by passing the sub-class as parameter and just checking who's asking.
Can someone please explain to me why this happens and help me to find a better solution than what I had to do with passing the sub-class itself as a parameter?
Thank you!
sub: jsfiddle.net/qqeV3. – pimvdb Dec 3 '11 at 16:22var User = new SimpleUser();– StuperUser Dec 3 '11 at 16:24SimpleUser.call(this)withoutbaseand you also missUser.prototype = Object.create(SimpleUser.prototype), since it is normal to chain prototypes; but none of it should be the problem for your functionality). – herby Dec 3 '11 at 16:25first=X&last=Yas the result of the lastconsole.log. So what's the problem? – RightSaidFred Dec 3 '11 at 16:32