在 Node.Js Express 中,“res.render”是否有效?结束http请求?
因此,只有在确定一切都已完成时才执行“res.render”,对吗?因为它结束了请求并弹出了一个网页。
So, only do "res.render" when you are sure that everything has finished, right? Because it ends the request and shoots out a webpage.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您不提供对
res.render(view[, options[, fn]])
的回调,它将自动给出包含 200 HTTP Status 和 Content-Type: text/html 的响应express.js 指南
If you don't provide a callback to
res.render(view[, options[, fn]])
it will automatically give a response with 200 HTTP Status and Content-Type: text/htmlexpress.js guide
对于当前的 github 主提交,这是
res.render
在 lib/view.js:With the current github master commit, this is
res.render
in lib/view.js: