使用 Busboy 在 Node.js 中将 Mutipart/form-data 转换为 JSON

Ale*_*ins 1 multipartform-data node.js firebase busboy google-cloud-functions

我正在开发一个 ios 应用程序,它使用mutipart/form-data URLRequest. 为了处理我的云函数中的数据,我使用文档中提到的方法来解析mutipart/form-datainto JSON format,这里是我的代码:

const Busboy = require('busboy');

exports.test = functions.https.onRequest((req, res) => {
    console.log("start");
    console.log(req.rawBody.toString());
    if (req.method === 'POST') {
        var busboy = new Busboy({ headers: req.headers});
        busboy.on('field', (fieldname, val, fieldnameTruncated, valTruncated, encoding, mimetype) => {
            console.log('field');
        });

        busboy.on('finish', function() {
            console.log('finish');
            res.json({
                data: null,
                error: null
            });
        });

        req.pipe(busboy);
    } else {
        console.log('else...');
    }
});
Run Code Online (Sandbox Code Playgroud)

但是,上面的代码似乎不起作用,以下是控制台的输出:

Function execution started
start
--Boundary-43F22E06-B123-4575-A7A3-6C144C213D09
Content-Disposition: form-data; name="json"

{"name":"Alex","age":"24","friends":["John","Tom","Sam"]}
--Boundary-43F22E06-B123-4575-A7A3-6C144C213D09--
finish
Function execution took 517 ms, finished with status code: 200
Run Code Online (Sandbox Code Playgroud)

如您所见,该on('field')函数永远不会执行。我错过了什么?

此外,这里是swift用于发送的代码httpRequest

var request = URLRequest(url: myCloudFunctionURL)
request.httpMethod = "POST"
request.setValue("multipart/form-data; boundary=myBoundary", forHTTPHeaderField: "Content-Type")
request.addValue(userToken, forHTTPHeaderField: "Authorization")
request.httpBody = myHttpBody
let session = URLSession.shared
session.dataTask(with: request) { (data, response, requestError) in 
    // callback
}.resume()
Run Code Online (Sandbox Code Playgroud)

Sta*_*mos 8

您将不得不调用busboy.end(req.rawBody);而不是 req.pipe(busboy)如文档示例中所述。我不知道为什么.pipe不起作用。调用.end将产生相同的结果,但方式不同。

const Busboy = require('busboy');

exports.helloWorld = functions.https.onRequest((req, res) => {

        const busboy = new Busboy({ headers: req.headers });
        let formData = {};

        busboy.on('field', (fieldname, val, fieldnameTruncated, valTruncated, encoding, mimetype) => {
            // We're just going to capture the form data in a JSON document.
            formData[fieldname] = val;
            console.log('Field [' + fieldname + ']: value: ' + val)
        });

        busboy.on('finish', () => {
            res.send(formData);
        });

        // The raw bytes of the upload will be in req.rawBody.
        busboy.end(req.rawBody);

});
Run Code Online (Sandbox Code Playgroud)