Posts by Filipe Oliveira • 51 points
4 posts
-
1
votes2
answers2498
viewsA: Is there a modeling tool for Nosql database?
Nosql databases are usually modeled differently than usual with relational databases. You can start by answering questions about how the data stream in the database will be captured. So the…
-
2
votes3
answers1728
viewsA: How to recover information from database by id on Ionic?
Suppose you have the following controller: angular.module('stackoverflow.example',[]) .controller('TestCtrl', function($scope, $http) { //Rota que possui o JSON que você quer consumir. var url =…
-
1
votes2
answers2726
viewsA: Ionic Apk does not work. White screen
There is probably some dependency on your app that is not being loaded and thus generating an error and stopping the correct app loading. If your application performs ajax requests, it is possible…
-
1
votes1
answer81
viewsA: Why doesn’t sharing the agreement work?
You have to keep in mind that the Cordova plugins will not work in the browser. You need to emulate a device or build the app and install it on your device. Your button should also be modified to…