2

我的表格很简单。它使用ng-flow来处理文件上传:

<form class="form-horizontal" enctype="multipart/form-data">
    <div flow-init="{target: '/test', testChunks: false, query: {'_csrf': '{{csrf}}', 'somestring': 'teststring'} }"
         flow-files-submitted="data.flow.upload()"
         flow-name="data.flow">

         <input type="file" flow-btn/>
    </div>
</form>

选择图像后,ng-flow将对目标路由进行 POST。看起来图像是发送的,因为请求有效负载有很多东西,比如:

1048576
------WebKitFormBoundaryw2YAG9m602ICPd0Q
Content-Disposition: form-data; name="flowCurrentChunkSize"

图片不是很大(~1MB)

在 nodejs 方面(使用快递):

var busboy = require('connect-busboy')({
    limits: {
        fileSize: 10 * 1024 * 1024
    }
});
router.post('/test', busboy, function(req, res) {
    console.log('test called');
    console.log(req.busboy);
    if (req.busboy) {
        req.busboy.on('file', function(fieldname, file, filename, encoding, mimetype) {
            console.log("this is fieldname: " + fieldname);
        });
        req.busboy.on('field', function(fieldname, val, fieldnameTruncated, valTruncated) {
            console.log('Field [' + fieldname + ']: value: ' + inspect(val));
        });
    }

    res.json();
});

req.busboy返回一个充满东西的对象,但req.busboy.on('file'...永远req.busboy.on('field'...)不会触发。

为什么 busboy 看不到我的字符串和图像?

4

1 回答 1

2

您需要将请求通过管道传递给 busboy,以便它可以解析表单:

req.pipe(req.busboy);
于 2015-04-18T20:22:56.390 回答