Posts by airton • 93 points
8 posts
-
0
votes1
answer220
viewsQ: How to enable HTTP Keep Alive
I am developing an application that needs to carry out many back-end requests. I would like to try the model of keeping the connection open: Keep-Alive. But in practice I have no idea where to…
-
0
votes1
answer136
viewsA: Uploading files with PHP does not recognize
To send files with ajax recommend you use jquery-Forms (http://malsup.com/jquery/form/) saved me a lot of time and support in many browsers. If you do not want to use jquery or plugins, I have…
-
1
votes1
answer100
viewsA: Configure GPRS module
One way to do it is to identify the exact model of your GPS module and in google find the pdf datasheet of it. The datasheet is a technical manual containing all specifications, examples of use and…
-
1
votes1
answer384
viewsA: What is the ideal network protocol to communicate an App with Arduino?
You can use the mqtt standard, this was developed exactly to be super light and be used in capturing sensors and signals. Using the service https://datasparkfun.com/ your Arduino does an http post…
-
2
votes1
answer336
viewsQ: Git merge did not go as expected
Hello, I will try to be very practical in this my problem. 1 - Working on the 'fix' branch I ended up making changes to different things by mixing things up... 2 - Dai to try to 'improve' created a…
-
0
votes1
answer96
viewsA: Angularjs directive blocking ngModel
Instead of your code like this: .directive('minhaDiretiva', function(scope, el, att, ctrl) { var el = element[0], For this: .directive('minhaDiretiva', function(scope, element, att, ctrl) { var el =…
-
1
votes2
answers218
viewsA: Is there a way to not fill HTML with directives?
Angular comes to extend the HTML, at first you may find that it is soiling, for me it makes it more declarative, in the $('item') model. on('click', does something); there in the js file, it can be…
-
1
votes2
answers621
viewsA: Problems with $http and ng-repeat Beginner Angularjs $$hashKey
Hello, I had problems with json bringing javascript objects, ng-repeat cannot work with objects, I had to use a filter object2Array. ng-repeat="item in items | object2Array "…