app.get('/test’,function(req,res){ res.render('admin/editArticle.ejs’,{ content:"" }) }) app.post('/test’,function(req,res){ var tmpPath=req.files.thumbnail.path; console.log(tmpPath); })
ejs 代码 如下
<input type="file" name="thumbnail" id="thumbnail"/>
报错如下~~ 我是在win 环境下的 express 3
500 TypeError: Cannot read property ‘thumbnail’ of undefined
3 回复