mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-26 10:43:35 +02:00
[react-express-mongdb] use compose network to communicate between services (#62)
Signed-off-by: Guillaume Lours <guillaume.lours@docker.com>
This commit is contained in:
parent
2f750eb4f7
commit
e29f0d1c54
4 changed files with 20 additions and 20 deletions
|
@ -1,5 +0,0 @@
|
|||
const config = {
|
||||
API_BASE_URL: 'http://localhost:3000',
|
||||
};
|
||||
|
||||
export default config;
|
|
@ -1,12 +1,10 @@
|
|||
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);
|
||||
export function request (method, uri, data, headers = null, params = null) {
|
||||
let query = {
|
||||
method: method,
|
||||
url: url
|
||||
method,
|
||||
url: uri
|
||||
};
|
||||
if (headers !== null)
|
||||
query.headers = headers;
|
||||
|
@ -14,9 +12,5 @@ export async function request (method, uri, data, headers = null, 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;
|
||||
}
|
||||
}
|
||||
return axios(query);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue