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.
我需要通过肥皂向 api 发出请求,但这个 api 可能非常慢。(有时响应需要 30 秒)。我基本上想提出请求,然后在一段时间后得到响应,而不会阻塞。然后我会缓存这个结果。
我不太了解 node.js,想知道它是否适合这个。它是否支持这种非阻塞 http 请求和响应?它是否取决于我用来发出请求的库?
是的,node.js 中的所有 I/O 操作都是非阻塞的。这是 node.js 的一般设计原则。
Node.js 已经带有API来发出 http 请求。