3.1.0 • Published 2 years ago

@blued-core/http-client v3.1.0

Weekly downloads
16
License
ISC
Repository
-
Last release
2 years ago

基于 request 的一层封装。

npm i @blued-core/http-client

cache 与 qconf-conf 组件都为可选的,可以自己根据描述自定义

使用方式:

import HttpClient from '@blued-core/http-client'
import Cache from '@blued-core/cache'
import { QconfHost } from '@blued-core/qconf-conf'

const qconfConf = new QconfHost({
  host1: 'XXX'
})

// Cache 可以使用 Map 代替
const httpClient = new HttpClient(qconfConf, new Cache())

const httpClient1 = httpClient.getClient('host1')

async function main () {
  const res = await httpClient1.getData({
    url: 'path1/path2',
    qs: { id: 1 }
  })

  console.log(res)
}

main()

API

调用参数与request参数一致,提供如下八个方法:

基于method抽出来的四个方法:getpostputdelete
基于以上四个方法的基础上处理返回值的四个方法:getDatapostDataputDatadeleteData

两者的区别

httpClient.get({
  url: 'XXX'
}) // => { code: 200, data: 'Hello World' }

httpClient.getData({
  url: 'XXX'
}) // => 'Hello World'
3.1.0

2 years ago

3.0.9

2 years ago

3.0.8

2 years ago

3.0.7

2 years ago

3.0.6

2 years ago

3.0.4

3 years ago

3.0.5

3 years ago

3.0.3

3 years ago

3.0.2

3 years ago

3.0.1

4 years ago

3.0.0

4 years ago

2.1.3

4 years ago

2.0.3

4 years ago

2.0.2

4 years ago

2.0.1

5 years ago

2.0.0

5 years ago

1.1.0

5 years ago

1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago