Odpowiedź musi być oczywiste, ale nie widzę gometoda klasy w JavaScript nie jest funkcją
tutaj jest moja klasa javascript:
var Authentification = function() {
this.jeton = "",
this.componentAvailable = false,
Authentification.ACCESS_MASTER = "http://localhost:1923",
isComponentAvailable = function() {
var alea = 100000*(Math.random());
$.ajax({
url: Authentification.ACCESS_MASTER + "/testcomposant?" + alea,
type: "POST",
success: function(data) {
echo(data);
},
error: function(message, status, errorThrown) {
alert(status);
alert(errorThrown);
}
});
return true;
};
};
potem instanciate
var auth = new Authentification();
alert(Authentification.ACCESS_MASTER);
alert(auth.componentAvailable);
alert(auth.isComponentAvailable());
mogę osiągnąć wszystko, ale ostatnia metoda, mówi w firebug:
auth.is ComponentAvailable nie jest funkcją .. ale ..
Dziękuję
To prawda, ale powinieneś opublikować jako komentarz, a nie odpowiedź –