Preguntas etiquetadas con synchronization

99
Solicitud síncrona en Node.js

Si necesito llamar a 3 API http en orden secuencial, ¿cuál sería una mejor alternativa al siguiente código? http.get({ host: 'www.example.com', path: '/api_1.php' }, function(res) { res.on('data', function(d) { http.get({ host: 'www.example.com', path: '/api_2.php' }, function(res) {...

96
Espere hasta que flag = true

Tengo una función de javascript como esta: function myFunction(number) { var x=number; ... ... more initializations //here need to wait until flag==true while(flag==false) {} ... ... do something } El problema es que el javascript está bloqueado en el while y atascado mi programa....