Posts by Gui Sartori • 50 points
9 posts
-
1
votes1
answer80
viewsA: Error while logging in with React using Fetch
I just found the problem: While doing the post, I was putting same-origin in credentials. I switched to include and solved the problem in all software. Thanks!…
-
0
votes1
answer80
viewsQ: Error while logging in with React using Fetch
I am building a software that has a Node API and a client in React. The backend is configured and working. You are logging in and when logged in bring back the data you need. However, with my React…
-
1
votes1
answer705
viewsA: Calculate age in Standard
try something like: return view('pessoas.grafico-idade', array('pessoas' => Pessoa::select('pessoa')->select('dataNascimento',DB::raw('YEAR(FROM_DAYS(TO_DAYS(NOW())-TO_DAYS(dataNascimento)))…
laravelanswered Gui Sartori 50 -
0
votes0
answers387
viewsQ: Laravel | block multiple logins with the same user
I need an idea of how to solve the problem of the same user’s ability to log into several different machines at the same time. Send examples or an idea of where to start looking for the solution.…
-
0
votes1
answer368
viewsQ: Select2 with ajax not returning data
I am trying to make an ajax query to an api to dynamically create a Select2. The api is returning data normally, but only the "No Results found" message appears in select. HTML <select…
-
0
votes3
answers397
viewsA: How to select a tr element in the middle of "N tr’s" in jQuery?
With a simple loop, you can work with all the kids of an html tag at once: $("tr").each(function(){ ... código ... }) Entered the loop you can work with the objects however you want Search on the…
jqueryanswered Gui Sartori 50 -
0
votes1
answer156
viewsA: Module Ionic error 2
Voce needs to create pages through the command inside the folder of your project. open cmd, point to the folder and type the command ionic generate page [nome]
-
1
votes3
answers116
viewsA: Why can’t Javascript find a page tag?
Voce can use the following code I think will work <body onload="aoba()"> you can be sure that it will work because you are trying to load the variable before the DOM is created, then in case…
javascriptanswered Gui Sartori 50 -
-1
votes2
answers2032
viewsQ: How to connect an HTML page, using ASP, to the SQL Server database?
How do I connect an sql database to an html site using Asp? Observing: I already have the entire bank developed and the full page too, I just need to know how to bridge the gap between the two…