0.0.8 • Published 4 years ago

swift-http v0.0.8

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

swift-http

使用typescript编写,支持Promise的http客户端

安装

$ npm i swift-http

引包

import shttp from 'swift-http'

const shttp = require('swift-http');

示例

const shttp = require('swift-http');
//发送一个post请求
shttp({
  method: 'post',
  url: '/blog/1',
  data: {
    describe: 'vue',
  }
}).then(response=>{
    console.log(response)
});
0.0.8

4 years ago

0.0.7

4 years ago

0.0.6

4 years ago

0.0.5

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago