@Drunk wrote:
I am making
http
request like this:$http.get('//IP/?username=' + username + '&content_type=json') .then(function (result) { $scope.days = []; alert(JSON.stringify(result)); for (first in result.data.weeks) break; var currentWeek = result.data.weeks[first]; var time = currentWeek.overall.as_time; $scope.week = currentWeek; for (day in currentWeek.days.sort().reverse()) { if (day < 2) { continue; } var currentDay = currentWeek.days[day]; $scope.days.push(currentDay); if (currentDay.present) { console.log(parseInt(currentDay.work_time_balance) + parseInt(currentWeek.overall.seconds)); } } }, function (result) { alert(JSON.stringify(result)); $ionicPopup.alert({ title: 'Error', template: 'Connection failed, try again later!' }); }) .finally(function () { // Stop the ion-refresher from spinning $scope.$broadcast('scroll.refreshComplete'); });
While I am opening app in browser with command
ionic serve
, everything seems working okay, I've already fixedCORS
and other stuff.
But when In mobile app, I am getting this (sorry for not providing plaintext)UPDATE
$http.get('//IP/?username=' + username + '&content_type=json') .then(function (result) { alert('Good'); }, function (result) { alert('Bad'); })
This code returns me
GOOD
, butresult.data
is still with script tags.
Posts: 1
Participants: 1