How can be parse `multipart/mixed` in node.js?
Asked Answered
A

0

6

I see lot of module in node.js like busboy , multer , formidable but they are not able to parse multipart/mixed body.

Example of the request multipart/mixed in node.js

--batchbatch
Content-Type: multipart/mixed; boundary=changeset1

--changeset1
Content-Type: application/http
Content-Transfer-Encoding: binary

POST data HTTP/1.1
Content-Type: application/json
Content-ID: ID1
Content-Length: 10000

{
"Name": "ddd",
"data1": "3",
"data2": "40", 
"data3": "OPPT",
"data3":"D1000",
"dat4": "D1000"
}


--changeset1--

--batchbatch
Content-Type: multipart/mixed; boundary=changeset2

--changeset2
Content-Type: application/http
Content-Transfer-Encoding: binary

PATCH data/32451 HTTP/1.1
Content-Type: application/json
Content-ID: ID1
Content-Length: 10000

{
"code": "3"
}

--changeset2--
--batchbatch
Content-Type: multipart/mixed; boundary=changeset3

--changeset3
Content-Type: application/http
Content-Transfer-Encoding: binary

DELETE /data/2345 HTTP/1.1


--changeset3--
--batchbatch--
Abomasum answered 30/5, 2019 at 10:24 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.