Posts by Leonardo Flores • 146 points
4 posts
-
2
votes2
answers752
viewsA: Cordova Geolocalization
It’s not returning anything, because you put inside the if(window.cordova && window.cordova.plugins.Keyboard) Place out of the if, its function: // Ionic Starter App // angular.module is a…
-
2
votes1
answer104
viewsA: Django and Cloudinary error - can’t use the string Pattern on a bytes-like Object
It had this same problem, it turns out that the library was incompatible with some new functions of Python 3.x and corrected them in version 1.3.1 Updates the Cloudinary package version to 1.3.1…
-
4
votes1
answer236
viewsA: How to get data Object in php?
Changes the $http.get for $http.post $http.get does not allow you to pass a set of data per parameter. $http get. $http.post allows you to pass a set of data per parameter $http post.…
-
1
votes2
answers216
viewsA: Error in php data return in Ionic
Put it like this instead of $http.get $http.get("http://localhost:8888/sistemas/sistemas_web/ionic/vcApp/www/php/pegaCep.php?cep="+$scope.endereco.cep) The way you did, PHP is not being compiled…