/文件上传模块编码缩写/ app.post('/file-upload’,function(req,res){ var tempPath=res.files.thumbnail.path; var target_path = ‘./public/images/’ + req.files.thumbnail.name; fs.rename(tempPath,target_path,function(err){ if (err) throw err; //del fs.unlink(tempPath,function(err){ if(err){ throw err; } res.send(‘File uploaded to: ' + target_path + ' - ' + req.files.thumbnail.size + ' bytes’); }) }); })
作者
作者其它话题
无