Service response mapping is showing "Too Many Errors (38% scanned)" and not mapping data correctly. My service response has no custom code and is just mapped from the response data to $scope vars(Modals) with matching types. The response is giving values to all of the mapped variables but the values are incorrect. The response is somewhat long, could that be the issue?
I compare the service response with the final results like this:
$scope.user = user_scope;
console.log("Service Response 1 = "+JSON.stringify(success.data.data.toProfile));
console.log("Service Response 2 = "+JSON.stringify($scope.user.location_data));
The values are different when compared. I have shared the app with Appery. It's call EB. The page is Login_Registration and the $scope function is login(). To test, click the top right icon and login with user: a href="mailto:matt@matt.com" rel="nofollow"matt@matt.com/a pass: 1234
The console.log will show up after that.