Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是编写nodejs代码的最佳实践。
我当前的代码中有很多回调,降低了可读性。
有什么建议吗?
回调:如果您只想在特定时间执行某些代码并且不需要发出成功或失败,请使用回调。
EventEmitter:如果您的对象发出许多类型的事件,请使用此选项。
尝试查看一些流控制库和文章来回答这个问题:Async Programming patterns with nodejs and redis-node。