在node环境使用axios发送文件

Posted Ajanuw

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在node环境使用axios发送文件相关的知识,希望对你有一定的参考价值。

yarn add form-data

(async () => {
  const l = console.log;
  const axios = require("axios");
  const fs = require("fs-extra");
  var FormData = require("form-data");
  var form = new FormData();
  form.append("file", fs.createReadStream("C:\Users\Administrator\Pictures\a.jpg"));
  form.append("type", "avatar");

  let r = await axios({
    method: "post",
    url: "http://localhost:5000/upload",
    data: form,
    headers: form.getHeaders()
  }).then(v => v.data);

  l(r); // ok
})();

以上是关于在node环境使用axios发送文件的主要内容,如果未能解决你的问题,请参考以下文章

axios学习笔记

如何在 node.js 中使用 axios 循环许多 http 请求

Vue安装并使用axios发送请求

VSCode自定义代码片段14——Vue的axios网络请求封装

VSCode自定义代码片段14——Vue的axios网络请求封装

VSCode自定义代码片段14——Vue的axios网络请求封装