我正在使用最新的 NodeJS 和 ExpressJS 来编写一个小应用程序。目前我坚持上传文件。:>
路由是这样配置的
app.get('/Share', share.index);
app.post('/Share/Process', share.processFile);
索引视图如下所示
form.form-horizontal(action='/Share/Process', method='post')
legend share a file
div.control-group
label.control-label(for='item[actual]') File
div.controls
input(type='file', name='item[actual]', required='required')
当我遵循 ExpressJS API 文档时,我应该可以使用req.files访问该文件,这在 share.processFile 方法中是未定义的
exports.processFile = function(req,res){
console.log(req.files); // undefined
console.log(req.body.item.actual); // filename as string
res.render('share/success', {navigation: { shareClass : 'active'}, downloadKey: 'foo'});
};