Есть такой код
componentDidMount = () =>{
let token = 'Bearer ' +localStorage.getItem('token');
console.log(token);
fetch('*****************', { method: 'GET',headers:{'Accept': "application/json", "Authorization": token}})
.then(response => response.json())
.then((response) => {
let orderArr = response.success.orders;
orderArr.forEach(order => {
///return fetch('**************'+order.user_id, { method: 'GET',headers:{'Accept': "application/json", "Authorization": token}})
});
})
.then((response) => console.log(response))
.catch(error => console.log(error));
}
response.json()) - возвращает данные такого формата:
Как мне добавить в заказ имя пользователя из другого запроса?