Posts by dvc.junior • 181 points
5 posts
-
1
votes1
answer89
viewsA: Calling php server side with Ionic and Angularjs
This is a problem of CORS. https://pt.wikipedia.org/wiki/Cross-origin_resource_sharing It happens when a request is made to your PHP API from a domain other than your own, in this case your…
-
0
votes1
answer71
viewsA: Consuming Json from an aquivo
The request to read data from a JSON file basically acts as a GET request for an API from a backend application. You can do inside a Factory: function recuperar(){ return…
angularjsanswered dvc.junior 181 -
0
votes1
answer104
viewsA: Is there anything similar to php for Angularjs?
Exactly like Composer as far as I know. But if you want to have an Angularjs base project you can use "Angularjs-Seed" by installing through NPM. npm install angularjs-seed Or you can clone right…
-
3
votes2
answers1896
viewsA: Loader on angled page
One way to achieve this is to know when all pending requests have been answered and to issue a warning when this happens. To do this, we can use an Angularjs Interceptor that increments a request…
angularjsanswered dvc.junior 181 -
4
votes2
answers905
viewsA: Auto-sign in to hybrid apps?
Well, this goal will depend heavily on how you are doing the authentication. Generally speaking, an automatic login involves having some information about the user credentials that allows…