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.
如何在 Heroku 上为 nodejs 配置超时。Heroku 在 30 秒时超时。我想在第 25 秒超时。我们如何配置?
目前有一种方法可以直接在请求对象上执行此操作:
request.setTimeout(timeout, [callback]);
这是绑定到套接字事件然后创建超时的快捷方法。
参考:Node.js 计时器手册和文档