NodeJS请求如何发送多部分/表单数据POST请求 [英] NodeJS Request how to send multipart/form-data POST request

查看:474
本文介绍了NodeJS请求如何发送多部分/表单数据POST请求的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试将POST请求发送到带有请求中图像的API.我正在使用请求模块执行此操作,但是我尝试执行的所有操作均不起作用.我当前的代码:

I'm trying to send a POST request to an API with an image in the request. I'm doing this with the request module but everything I try it isn't working. My current code:

const options = {
    method: "POST",
    url: "https://api.LINK.com/file",
    port: 443,
    headers: {
        "Authorization": "Basic " + auth,
        "Content-Type": "multipart/form-data"
    },
    form : {
        "image" : fs.readFileSync("./images/scr1.png")
    }
};

request(options, function (err, res, body) {
    if(err) console.log(err);
    console.log(body);
});

但是由于某些原因请求使用Content-Type: application/x-www-form-urlencoded ...如何解决此问题?

But request uses Content-Type: application/x-www-form-urlencoded for some reason... How can I fix this?

推荐答案

文档表单multipart/form-data请求正在使用form-data库.因此,您需要提供formData选项而不是form选项.

As explained in documentation form multipart/form-data request is using form-data library. So you need to supply formData option instead of form option.

const options = {
    method: "POST",
    url: "https://api.LINK.com/file",
    port: 443,
    headers: {
        "Authorization": "Basic " + auth,
        "Content-Type": "multipart/form-data"
    },
    formData : {
        "image" : fs.createReadStream("./images/scr1.png")
    }
};

request(options, function (err, res, body) {
    if(err) console.log(err);
    console.log(body);
});

这篇关于NodeJS请求如何发送多部分/表单数据POST请求的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆