如何在包含文件和数据的节点中发送POST请求?

时间:2014-07-25 00:48:32

标签: node.js

我想发送一个POST请求,其中包含Node.js中的一些数据和文件。我正在使用“请求”库(替代方案很好)。

如何在请求数据中包含“文件”?

var request = require("request");

request.post({
  url: "https://sender.blockspring.com/api/blocks/319bfef4aad7f3477745048a2da3ae6a?api_key=2e0ef0c216078d60630d1321e67b243a",
  form: { first_name: "Don", last_name: "P", my_file: ???? }
},
function(err, response, body) {
  console.log(body);
});

0 个答案:

没有答案