使用普通的node.js服务器渲染页面(强制浏览器刷新)

时间:2019-04-01 23:52:07

标签: node.js http http-headers

如果我有

const server = http.createServer((req,res) => {
    if(req.url === '/submit_form'){
      res.end('refresh their page');  // obviously this isn't quite right
    }
});

如果用户提交表单(发布请求),如何刷新他们的浏览器并为他们呈现新的html页面?我认为这是我需要包含的标题吗?使用Express,我假设使用res.render()可以解决问题,并且我假设使用一些http标头来实现。

0 个答案:

没有答案