awesome-compose/react-express-mongodb/frontend/src/utilities/httpRequestHandler.js
Syed Afzal 2f750eb4f7
Sample React-Express-MongoDB (#59)
Signed-off-by: Afzal <sah.afzal@gmail.com>
2020-05-11 21:40:39 +02:00

22 lines
585 B
JavaScript

import axios from 'axios';
import config from '../config/constants';
export async function request (method, uri, data, headers = null, params = null) {
let url = (config.API_BASE_URL + uri);
let query = {
method: method,
url: url
};
if (headers !== null)
query.headers = headers;
if (params !== null)
query.params = params;
if (method === 'post' || method === 'put' || method === 'delete' || method === 'patch')
query.data = data;
try {
return await axios(query);
} catch (e) {
throw e;
}
}