@zhike/axios-upload

1.0.8 • Public • Published

axios-upload

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

npm npm

GitHub forks GitHub stars

Installation

npm i @zhike/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

none

Package Sidebar

Install

npm i @zhike/axios-upload

Weekly Downloads

0

Version

1.0.8

License

MIT

Unpacked Size

3.27 kB

Total Files

5

Last publish

Collaborators

  • misakisaysyes
  • smartfe
  • jayi
  • zhiker
  • maintao
  • renxing
  • shenggao