Posts by CleristonDantas • 185 points
9 posts
-
0
votes1
answer29
viewsA: Doubt with ng-repeat Angularjs
Brother good afternoon, apparently functioning as expected. var app = angular.module('myApp', []); app.controller('myCtrl', function($scope) { $scope.menu = [{ titulo: 'Comercial', submenus: [{…
angularjsanswered CleristonDantas 185 -
0
votes1
answer75
viewsA: Is it possible to change port of an HTTPS connection in Cloudfront?
The error was in my own Cloudfront configuration, my origin has no ssl, so Cloudfront communication with the source should be http. Had set up in Cloudfront to be Match Viewer, in which case it…
-
1
votes1
answer75
viewsQ: Is it possible to change port of an HTTPS connection in Cloudfront?
I have a service running on port 8090, when configuring CDN on AWS Cloudfront it is possible to change port http from 80 to 8090, and it works normally, however when changing https 443 to 8090 it is…
-
3
votes2
answers5403
viewsA: How to find out which extensions are installed in my PHP?
In the terminal, you can use the command $ php -m
phpanswered CleristonDantas 185 -
1
votes3
answers1293
viewsA: How to use ng-repeat in an object list?
Hello, try to define how $scope.objeto or instead of var = objeto. Here it spun pretty
-
1
votes2
answers76
viewsA: Sass css/js minification
You can use the GRUNT also https://github.com/gruntjs/grunt-contrib-cssmin
-
2
votes2
answers6021
viewsA: Validating Email with Jquery and Ajax
I use it like this: var filter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/; if (!filter.test(form.email.value)) { form.email.focus(); $("MsgErro").show() .text('Por favor,…
-
6
votes1
answer3999
viewsQ: How to consume a SOAP Webservice with Angularjs?
Well, I have a SOAP Webservice that is consumed normally by a PHP client, working perfectly... by ajax this php consumption and populate my template.. My current application makes the following…
-
1
votes2
answers198
viewsQ: How to mount PDO query with items previously concatenated
The doubt is the following, in mysql we can concatenate a query and then perform the search, as follows: $cidades = '&& (cidade = 100 || cidade = 101 || cidade = 102)'; $order = 'id ASC';…