1.5.4 • Published 5 years ago

easy-fetcher v1.5.4

Weekly downloads
5
License
ISC
Repository
github
Last release
5 years ago

#easy-fetcher ##项目介绍 基于promise和fetch封装的网络请求库 ##使用范例

        async request() {
               const fetcher = new Fetcher("http://www.***.com", {headers:{"Content-Type": "application/json"},credentials: "include"}, DataType.JSON, 10000);
               try {
                   // fetcher.delete|post|get|patch...
                   const result = await fetcher.post({
                       path: "/ass/ddd",
                       pathId: 123,
                       query: {limit: [1, 20]},
                       body: {name: "abc", age: 12},
                       headers: {"token": "abcd", "Content-Type": "application/***"}
                   });
                   console.log(result);
               } catch (e) {
                   console.log(e);
               }
           }
1.5.4

5 years ago

1.5.3

5 years ago

1.5.2

5 years ago

1.5.1

5 years ago

1.5.0

5 years ago

1.3.0

5 years ago

1.2.0

5 years ago

1.1.6

5 years ago

1.1.5

5 years ago

1.1.4

5 years ago

1.1.3

5 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

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