Jestem nowy w JavaScript. Nowością, co naprawdę z nim zrobiłem, jest poprawienie istniejącego kodu i napisanie małych fragmentów jQuery.
Teraz próbuję napisać „klasę” z atrybutami i metodami, ale mam problem z metodami. Mój kod:
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
Problemem jest to, w Request.prototype.start
, this
jest niezdefiniowana, a zatem jeśli analizuje schemat rachunku false. Co ja tu robię źle?
start
wprototype
?