coffeescript body = req.body
path = res.locals.Path
f = req.files.uploadpic
if not f? or f is ""
return res.send new helper.recode(201,"请指定上传的图片")
console.log oldname
console.log body,path
console.log req.files
console.log f
location = __dirname+"/../../public/uploadDir"
oldname = location+"/"+f.name
if not body.album? or body.album is ""
fs.unlink oldname, (err)->
res.send new helper.recode(201,"相册 ID 不能为空")
return false
if not body.token? or body.token is ""
fs.unlink oldname, (err)->
res.send new helper.recode(201,"您还没有登录,请先登录")
return false
if not res._user? or res._user is ""
fs.unlink oldname, (err)->
res.send new helper.recode(201,"您还没有登录,请先登录")
return false
我也发现这个问题了, multer 是直接上传了, 他有单独的事件,但是好像不好用.
我是这么写的
如果 token 不对, 你就把获取到的图片或者文件删除掉.
如果 token 检查没问题, rename 一下上传上来的文件就行了.