0;
var currentBet = 0;
function reloadData() {
axios({
method: 'post',
url: '/lot/info',
responseType: 'json'
})
.then(function (response) {
dateEnd = response.data.time;
currentBet = response.data.tek_stavka;
})
.catch(function (error) {
$.alert({
title: "Сообщение",
type: "red",
content: "Произошла ошибка"
})
});;
};
reloadData();
console.log(dateEnd);
console.log возвращает 0
переместить console.log в нужное место
return в функции reloadData поставь, а console.log взывай в then reloadData().then(() => console.log(dateEnd))
var dateEnd = 0; var currentBet = 0; function reloadData() { return axios({ method: 'post', url: '/lot/info', responseType: 'json' }) .then(function (response) { dateEnd = response.data.time; currentBet = response.data.tek_stavka; }) .catch(function (error) { $.alert({ title: "Сообщение", type: "red", content: "Произошла ошибка" }) });; }; reloadData().then(function () { console.log(dateEnd); });
Обсуждают сегодня