这是我的代码
var storage = multer.diskStorage({
destination:function(req,file,cb){
cb(null,path.join(path.resolve('./'),"/images"))
},
filename:function(req,file,cb){
cb(null,file.fieldname+"-"+ Date.now())
}
});
在“/ images”中,有2个文件
它们是相同的文件