Я хотел бы вернуть на свой веб-сайт единственную переменную, основанную на моем API REST. Я использую Ax ios для интеграции моего бэкэнда с моим внешним интерфейсом.
import api from '../../api';
async function handleBooks(e){
e.preventDefault();
const data = {
title,
reservation,
rent,
devolution
};
try{
const response = await api.get('books', data);
console.log(response); //it is working!
}catch(err){
console.log('!response');
}
}
return(
//I would like to return one of those variables upside mentioned, for example: 'title'.
<div>{response.data.title}<div/>
);