我编写了一个将文件上传到服务器的代码。但是,在上传完成后,系统会将我重定向到上传路径。如何上传文件并留在第一页?
例如:
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和我当前的会话。
提前致谢。