Posts by Rodolfo Azevedo • 26 points
4 posts
-
1
votes1
answer58
viewsA: GET golang syntax error with optional parameters
This is one of the flaws in the design of the database/sql package, as it leaves the implementation of the bind variables, which does not allow to be generic. What you need to remember is that each…
golanganswered Rodolfo Azevedo 26 -
0
votes1
answer164
viewsA: JSON to String API GATEWAY ( AWS )
The Amazon Gateway API only receives if it is a string, if you pass any other type of data parse error happens, and also Response has a defined structure. In case you can transform your struct into…
-
0
votes2
answers1235
viewsA: How to access a list within a list in Vuejs?
Vue.js v-for also iterates on objects: https://br.vuejs.org/v2/guide/list.html#Objects-em-v-for…
-
-1
votes3
answers122
viewsA: Error to popular Array with Vuejs + Firebase
methods: { addTodoInList: function(){ this.tasks = [] writeTask(11, "teste 7", "12/12/2012", 'Lorem Ipsum 3'); } } function listTasks(){ var tasks = []; // REMOVA ESSA LINHA var listTasks =…