如何在firebase云函数上解析多部分/表单数据?

问题描述 投票:0回答:5

根据此处的文档,我一直在尝试将带有文本和图像文件的多部分/表单数据对象发布到我的云功能之一:

https://cloud.google.com/functions/docs/writing/http#multipart_data_and_file_uploads

我的云函数几乎与示例完全相同,只是我将其包装在 CORS 响应中。不过,似乎无论如何,busboy 的“field”和“file”事件都不会触发,当我打印请求正文的 toString 方法时,我会在数据变成乱码之前获取一些数据。

是否有可能我在发送 FormData 时设置不正确?

这是包含我的 XMLHttpRequest() 的代码:

var formData = new FormData(document.getElementById("ticketForm"));
return new Promise(function (resolve, reject) {
      var xmlhttp = new XMLHttpRequest();
      xmlhttp.open("POST", "https://us-central1-XXXXXXX.cloudfunctions.net/ticketFunction");
      var boundary = Math.random().toString().substr(8) + "--";
      xmlhttp.setRequestHeader('Content-Type', 'multipart/form-data;charset=utf-8; boundary=' + boundary);
      // xmlhttp.setRequestHeader('Content-Type', undefined);

      xmlhttp.onload = function () {
        if (this.status >= 200 && this.status < 300) {
          resolve(xmlhttp.response);
        } else {
          reject({
            status: this.status,
            statusText: xmlhttp.statusText
          });
        }
      };
      xmlhttp.onerror = function () {
        reject({
          status: this.status,
          statusText: xmlhttp.statusText
        });
      };
      xmlhttp.send(formData);
    });

这是我的云功能:

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

if (req.method === 'POST') {

  const busboy = new Busboy({ headers: req.headers });
  const tmpdir = os.tmpdir();
  console.log("Length: " + req.headers['content-length']);
  console.log(req.body.toString());

  // This object will accumulate all the fields, keyed by their name
  const fields = {};

  // This object will accumulate all the uploaded files, keyed by their name.
  const uploads = {};

  // This code will process each non-file field in the form.
  busboy.on('field', (fieldname, val) => {
    // TODO(developer): Process submitted field values here
    console.log(`Processed field ${fieldname}: ${val}.`);
    fields[fieldname] = val;
  });

  busboy.on('error', function(err){
    console.log("Error: " + err);
  });

  // This code will process each file uploaded.
  busboy.on('file', (fieldname, file, filename) => {
    // Note: os.tmpdir() points to an in-memory file system on GCF
    // Thus, any files in it must fit in the instance's memory.
    console.log(`Processed file ${filename}`);
    const filepath = path.join(tmpdir, filename);
    uploads[fieldname] = filepath;
    file.pipe(fs.createWriteStream(filepath));
  });

  // This event will be triggered after all uploaded files are saved.
  busboy.on('finish', () => {
    // TODO(developer): Process uploaded files here
    console.log(fields);
    console.log("Uploads: " + JSON.stringify(uploads));
    for (const name in uploads) {
      console.log(name);
      const file = uploads[name];
      fs.unlinkSync(file);
    }
    res.send();
  });

  req.pipe(busboy);
} else {
  // Return a "method not allowed" error
  res.status(405).send("Something weird happened");
}

}) });

我注意到的几件事是: 打印标头的内容长度值似乎总是返回未定义。

当我打印 req.body.toString() 方法时,我得到这个:

 ------WebKitFormBoundaryeYZHuHsOLlohyekc
Content-Disposition: form-data; name="description"

testing description
------WebKitFormBoundaryeYZHuHsOLlohyekc
Content-Disposition: form-data; name="priority"

Low
------WebKitFormBoundaryeYZHuHsOLlohyekc
Content-Disposition: form-data; name="dueDate"

2018-07-27
------WebKitFormBoundaryeYZHuHsOLlohyekc
Content-Disposition: form-data; name="customer"

zavtra
------WebKitFormBoundaryeYZHuHsOLlohyekc
Content-Disposition: form-data; name="email"

[email protected]
------WebKitFormBoundarysseArmLvKhJY0TAm
Content-Disposition: form-data; name="photo"; filename="brighthabits1.png"
Content-Type: image/png

�PNG

IHRGB���@IDATx�}�ݴտ��I�$�V���*�EH ! �:(_7m)-ݻ�ί���{-dCaf��*�=!����N����ͽ�ږm�y�׶tt�OG�ʶ,6L���L*�ć[����V;�x�+[�c�/�0;@a�5��;��]]<x��\R�cqoG`rGƵ�t����O�y�J���"
����*�,�F,��.�ib�
                 ��I�.�SV�;��h�!v��~T�EY����(u\�4+&��I��9@~wP�`N��H�;�G"7.BI��h
                                                                               P��$R
                                                                                    �0pt,�[=��E��8����$^$��
"�,�,�4�>�Y�YY|�v3JSW��
                       )�q,���i>w��A��q\-
                                         �u���ՠ�hJW�oF������W7X��]��
                                                                    )#mx������&�њ�����iu���;D��ŗL��ޥh[F�8���D�^������IW��#��

                                �
                                 �
�TL�n���� {�l�`h����r   ��S>�[���&���_�%R8���W��mok�E����R���.]#@5������j���o���e����?Ӟ�u�Ţ�Y��5�N'�Nf��Թ#ߏ��E;�<�?^X��x�uπʭ�V??�� s�plzBǶ 

我不确定是什么导致最后出现所有乱码,但这只有在我上传图像时才会明确。当表单数据中没有图像时,busboy 的“field”事件仍然不会触发,让我相信有些东西仍然没有被正确解析。

这令人沮丧,因为否则看起来我完全正确地遵循了文档。

firebase xmlhttprequest google-cloud-functions multipartform-data busboy
5个回答
11
投票
// Node.js doesn't have a built-in multipart/form-data parsing library.
// Instead, we can use the 'busboy' library from NPM to parse these requests.
const Busboy = require("busboy")
const busboy = new Busboy({ headers: request.headers })
let fields = []
busboy.on("field", (field, val) => {
    console.log(`Processed field ${field}: ${val}.`)
    fields[field] = val
})
busboy.end(request.rawBody)

3
投票

首先安装busboy依赖项

npm i busboy

创建从 FormData 返回数据的函数后

const getFieldsFromFormData = (headers: any, body: any) =>
new Promise(async (resolve, reject) => {
    const Busboy = require('busboy');
    const busboy = new Busboy({ headers });
    let fields: any = {};
    
    busboy.on("field", (field: string, val: any) => fields[field] = val)
    busboy.on('finish',() => resolve(fields));
    busboy.end(body)
});

在控制器中

expressInstance.post('/upload', async (req, res, next) => {

    const body = await getFieldsFromFormData(req.headers, req.body)
    console.log('MyFormData:>> ', body);

    res.send({});
})

2
投票

我正在关注这个存储库使用 Busboy 上传图像并且在 Firebase Cloud 上运行得很好。


1
投票

官方谷歌文档建议使用 Busboy npm 包,正如已接受的答案所建议的那样。只是将这些发布在这里,以防它们对其他人有用:

https://cloud.google.com/functions/docs/writing/http#multipart_data


0
投票

这成功地为我使用了带有 firebase 功能的 Busboy - https://github.com/firebase/firebase-functions/issues/141#issuecomment-1253607537

© www.soinside.com 2019 - 2024. All rights reserved.