Integrate fetch for easier use.
npm install lesca-fetcher --save
import Fetcher, { contentType, formatType } from 'lesca-fetcher';
Fetcher.install({
hostUrl: 'https://yourhost.com/api/',
contentType: contentType.JSON,
formatType: formatType.JSON,
});
Fetch.setJWT('Fsr.956b6.67ktJGr'); // if necessary
<button
onClick={() => {
const path = '/save';
const data = { name: 'myName', age: '18' };
Fetcher.post(path, data).then((respond) => {
console.log(respond);
});
}}
>post</div>;
<button
onClick={() => {
const path = '/get';
Fetcher.get(path).then((respond) => {
console.log(respond);
});
}}
>get</div>;
method | description | default |
---|---|---|
.install(config:object) | install first | |
.post(api:string, data:object) | POST | |
.get(api:string) | GET | |
.setJWT(token):string | set JWT Token | |
.postStringify(api:string, data:object):string | post and stringify | |
.mergePath(api:string):string | get full path |
const config = {
hostUrl: 'https://www.yourHost.com/api/', // string
contentType: contentType.JSON, // enum contentType.JSON || contentType.URL_ENCODED
formatType: formatType.JSON, // enum formatType.JSON || formatType.string
};
- maintain if necessary