axios-upload

1.0.10 • Public • Published

axios-upload

node 中在 axios 基础上上传表单数据

npm npm npm

GitHub forks GitHub stars

Installation

npm i axios-upload 

example

const axiosUpload = require('axios-upload');

// 这里直接将 stream 传入即可
// 文件默认上传最大为100M,若需修改,使用maxContentLength参数,单位byte
const data = {
  name: 'test',
  filedata: fs.createReadStream('./test.png')
};

await axiosUpload({
  url: 'http://xxx.xxx/test',
  method: 'post',
  headers: {
    'cache-control': 'no-cache'
  },
  data: data
});

Readme

Keywords

Package Sidebar

Install

npm i axios-upload

Weekly Downloads

47

Version

1.0.10

License

MIT

Unpacked Size

4.39 kB

Total Files

6

Last publish

Collaborators

  • jiayufeng