我的表格很简单。它使用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方面(使用express):

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,以便它可以解析以下形式:

req.pipe(req.busboy);

10-06 15:32