Soy nuevo en JavaScript. Lo nuevo en cuanto a lo que realmente he hecho con él es modificar el código existente y escribir pequeños fragmentos de jQuery.
Ahora estoy intentando escribir una "clase" con atributos y métodos, pero tengo problemas con los métodos. Mi código:
function Request(destination, stay_open) {
this.state = "ready";
this.xhr = null;
this.destination = destination;
this.stay_open = stay_open;
this.open = function(data) {
this.xhr = $.ajax({
url: destination,
success: this.handle_response,
error: this.handle_failure,
timeout: 100000000,
data: data,
dataType: 'json',
});
};
/* snip... */
}
Request.prototype.start = function() {
if( this.stay_open == true ) {
this.open({msg: 'listen'});
} else {
}
};
//all console.log's omitted
El problema es que, en Request.prototype.start
, this
no está definido y, por lo tanto, la instrucción if se evalúa como falsa. ¿Qué estoy haciendo mal aquí?
start
en elprototype
?