Posts by Lucas Morse • 129 points
6 posts
-
-1
votes1
answer2482
viewsQ: How to export data from a database to a CSV file?
Hello, I would like to know how data could be exported from a database to an Excel spreadsheet, not necessarily need a code that does this, but I would like to know which languages can be used,…
-
0
votes1
answer904
viewsQ: How to change the color of a mat-button in Angular?
How does it become possible to change the color of an angular mat-button? I’m using Theme Indigo-pink, and it has a pink Accent, I don’t think it matches, and I’d like to change to another color,…
-
0
votes1
answer94
viewsQ: How to use HTTP GET APIS?
I have an API that performs object manipulation through a link, the parameters are passed on that link. I would like to know how I can use it or create a javascript method to run this link.
-
1
votes1
answer33
viewsQ: Pass the value of a key when creating or after creating the array
I have the following JSON file: const animais = {"types":[ { "id":100196, "animal":"dog", "type":"adult", "tags":"AA 96 87" },{ "objid":100578, "animal":"cat", "type":"old", "tags":"T2 96 AB" },{…
-
5
votes3
answers1319
viewsQ: How to create a list from a JSON with Javascript?
Suppose I have the following given JSON: const dados = {"animais":[ { "id":1, "tipo":"Cachorro", "nome":"Max", "tags":"Border Collier" },{ "id":2, "tipo":"Cachorro", "nome":"Fini", "tags":"Lhasa…
javascriptasked Lucas Morse 129 -
6
votes2
answers162
viewsQ: Centralize Divs responsibly
Next, I always looked for a solution to this type of problem, but never found. I have the following codes. <style> .allboxframes { margin: 0 auto; max-width: 100%; } .box-frames { margin: 0…