0.0.8 • Published 5 years ago

swift-http v0.0.8

Weekly downloads
3
License
MIT
Repository
github
Last release
5 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

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago