Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
"usersData": [ { "id": 0, "email": "test1@mail.ru", "password": "qwerty1", "name": "John Smith", "image": "image/photoUser.png", "friends": [] } ]
axios({ method: 'post', url: '/usersData', data: { firstName: 'Fred', lastName: 'Flintstone' } });
{ "usersData": [ { "id": 0, "email": "test1@mail.ru", "password": "qwerty1", "name": "Алексей Цветков", "image": "image/standartPhotoUser.png", "friends": [{ "id": 5, "name": "Павел Дуров", image": "image/standartPhotoUser.png" }, { "id": 6, "name": "Миша", "image": "image/standartPhotoUser.png" } ] } ] {
const configAx = { method: 'post', url: '/usersData', data: { usersData: [ { "id": 0, "email": "test1@mail.ru", "password": "qwerty1", "name": "Алексей Цветков", "image": "image/standartPhotoUser.png", "friends": [{ "id": 5, "name": "Павел Дуров", "image": "image/standartPhotoUser.png" }] } ] } } axios( configAx )