Open billie66 opened 10 years ago
有人建议用 async.js 或 Q
http://dev.oupeng.com/articles/7-tips-for-a-nodejs-padawan
http://stackoverflow.com/questions/6847697/how-to-return-value-from-an-asynchronous-callback-function
因为是异步,写在前面的语句未必就先执行,所以会造成有时候数据库还没存好,就开始读取了,造成了读取失败。
http://justinklemm.com/node-js-async-tutorial/ 正好是说上面这个问题的,看来得用 async.js
https://medium.com/tech-talk/e7c0b0e5ce3c
上面这个 patch 中又 async.js 使用的时候 callback() 位置的一个 tip
有人建议用 async.js 或 Q
http://dev.oupeng.com/articles/7-tips-for-a-nodejs-padawan