1.0.4 • Published 3 years ago

@all-in-js/fetch-functions-api v1.0.4

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

fetch-functions-api

简化前端通过 fetch 请求 koa-functions-api

后端需要通过 koa-functions-api 实现 /api/functions 接口

import Fetch from '@all-in-js/fetch-functions-api';

const $fetch = new Fetch('/api/functions');

// GET
$fetch('api/helloWorld', {});

// POST, 暂时只支持 json
$fetch.post('api/helloWorld', {});

// combine
$fetch.combine({
  'api/helloWorld': {},
  'api/whatelse': {}
});
1.0.4

3 years ago

1.0.2

3 years ago

1.0.3

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago