使用Busboy with express来处理图片上传时,我可以像这样获取multipart / form-data帖子的字段和文件:
var busboy = require('connect-busboy');
app.use(busboy());
app.post('/something', function(req,res) {
req.pipe(req.busboy);
req.busboy.on('field', function(fieldname, val) {
// do stuff here with fields...
}
req.busboy.on('file', function (fieldname, file, filename) {
// do stuff here with the file
}
});
我想知道的是,在我处理文件之前,我想知道字段是什么的实例。在我的实验中,每次都会首先得到这些字段。有谁知道这是否保证总是如此?