У меня есть код для входа в nativescript с помощью vue js.Это мой код
login2: function(){
this.isLoading = 'true';
http.open('POST', url, true);
//Send the proper header information along with the request
http.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
var q = this;
http.onreadystatechange = function() {//Call a function when the state changes.
if(http.readyState == 4 && http.status == 200) {
q.isLoading = 'false';
alert(http.responseText);
}
}
http.send(param);
},
Если я нажму кнопку mybutton (вызов функции login ()), она зависнет (продолжит загрузку), если я попытаюсь войти в систему 5 раз.Кто-нибудь может решить эту проблему?