【发布时间】:2016-11-28 22:48:58
【问题描述】:
我编写了一个将文件上传到服务器的代码。但是,就在上传完成后,系统将我重定向到上传路线。如何上传文件并停留在首页?
例如:
app.post('/upload',function(req,res){
upload(req,res,function(err) {
if(err) {
return res.end("Error uploading file.");
}
res.end("File is uploaded");
});
});
上传完成后,我被重定向到 localhost:3000/upload。我不想要它。我想留在 localhost:3000 和当前会话中。
提前致谢。
【问题讨论】:
标签: node.js redirect express multer