Posts by Felipe Araujo • 21 points
6 posts
-
0
votes0
answers61
viewsQ: How to add a javascript object in a dynamically received select option?
Which is the best way to add information in the value of being that I receive an Object dynamically. The current code is as follows (Note the _options[i] | json): <ion-item…
-
1
votes0
answers23
viewsQ: How to set cookie information within a Symfony2 controller
I need to set some information in the cookie when a new user creates their registration in the system. The registration screen is this: I have the following controller: <?php /** * Exibe o…
symfony-2asked Felipe Araujo 21 -
0
votes1
answer162
viewsA: Structure in "tree", how to iterate on it?
I’m new in development with React, Redux, Immutable and so on. After reading several articles about the immutable structure I found a solution. It was the following: The first point was to transform…
-
1
votes1
answer162
viewsQ: Structure in "tree", how to iterate on it?
Look at the picture: I’m trying to clone a page using the concepts of immutable. Each page has some features and the feature I must prepare before saving the page in the state(state) is "localId" By…
-
0
votes1
answer90
viewsA: Create query with date range in Doctrine 2.0
Dae galera. Well, I’ve found a way to accomplish this task. the solution found was: public function obtemSolicitacoesAntigasParaDeletar($executar = true){ $dataAtual = new DateTime('now');…
-
0
votes1
answer90
viewsQ: Create query with date range in Doctrine 2.0
I’m trying to get the records that are processed No (Datetime) less than 2 days from the current date. I am starting from the following reasoning. public function…