Я новачок у JavaScript. Нове, наскільки все, що я насправді робив з ним, - це налаштування існуючого коду та написання невеликих бітів jQuery.
Зараз я намагаюся написати "клас" з атрибутами та методами, але маю проблеми з методами. Мій код:
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
Проблема, в Request.prototype.start
, this
невизначена, і, отже, оператор if має значення false. Що я тут роблю не так?
start
вprototype
?