nodejs multipart / formData请求

时间:2018-08-26 01:40:36

标签: node.js

我对节点js的multipart / formdata请求不满意。

我正在抓取一个执行multipart / formdata请求的网站。这是这样的:

url : https://example.com
Content-Type: multipart/form-data;boundary=----

formdata : 
------------------------------7a9cd2dc11c1
Content-Disposition: form-data; name="to"

destination@email.com
------------------------------7a9cd2dc11c1
Content-Disposition: form-data; name="from"

recipient@email.com
------------------------------7a9cd2dc11c1
Content-Disposition: form-data; name="subject"

subject line
------------------------------7a9cd2dc11c1
Content-Disposition: form-data; name="text"

This content does not matter.
------------------------------7a9cd2dc11c1--

am使用节点js的请求模块进行此操作。帮助,我需要例子。

0 个答案:

没有答案