Posts by Jos Eduardo Sampaio de Aguiar • 13 points
3 posts
-
0
votes1
answer428
viewsQ: Get url of route accessed in Nodejs
I need to know which external url the user accessed on my server. My script works well when the route is "localhost", but it doesn’t work to know what the url is when the domain is not the same as…
-
0
votes1
answer30
viewsA: How to update a table through AJAX?
You should use the jquery’s "append()" function to add the items that come from your form to the html div let nome = ""; let dataNascimento = ""; let telefone = ""; let cpf = ""; let rg = ""; let…
-
1
votes1
answer80
viewsQ: How to connect a Electron Nodejs window to a proxy?
I have the following code in Js on Node, using Electron: const {app, BrowserWindow} = require('electron') app.on('ready', function(){ mainWindow = new BrowserWindow();…