Posts by Adrian Matheus Fernandez • 108 points
7 posts
-
1
votes3
answers82
viewsA: Receive result from an ajax as return
Can you use async/await? If you can, it’s simple, see: var funcao1 = async function() { var result var ajax = await $.ajax({ url: 'https://api.nulbox.com', success: function(data) { result = data }…
-
0
votes3
answers1771
viewsA: 'Access-Control-Allow-Origin' error
Welcome to Stack Overflow in English, Matheus. Take a look at help center if you have any questions about the site. In this line: request.open('GET',…
javascriptanswered Adrian Matheus Fernandez 108 -
0
votes2
answers53
viewsA: Simultaneous tasks in Gulp
I couldn’t understand exactly what I meant here: [...] but the server task prevails over the others You could give an example of what happens today? But as I understand it, you want when saving the…
-
1
votes1
answer54
viewsA: Duvida Javascript
Welcome to Stack Overflow! To learn more, take a look at code of conduct. Did you translate this or is the text so? Information seems to be missing. The statement is not very clear. I believe that…
-
3
votes1
answer67
viewsA: Integrar Javascript
How do you plan to "distribute" these pages? To go to the next page, you will have to: Make an HTTP request from the new page (going from "http://exemplo.com/questionario?p=1" for…
-
0
votes3
answers117
viewsA: Generate a query number?
I believe that if you can better explain your need for random number someone can show you a better way. At first, if there is no reason for this number to be random, Mysql relies on the…
-
0
votes2
answers139
viewsQ: Is it possible to rewrite any code that uses pointers (C#) without using pointers in Node.js?
It is possible to rewrite any code in C/C# that uses pointers in a way that does the same thing without using them? My fear is more complex codes. The simple ones I believe are not difficult to…