如果我有
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标头来实现。