Данные одни и те же, но в случае axios возвращает неверный ключ. Почему так? Помогите пожалуйста
axios({
method: 'post',
url: URL + 'get_products',
data: {
secret: secret
}
})
.then(data=>console.log(data))
.catch(err=>console.log(err))
HttpRequest.post(URL + 'get_products', { form: { secret: secret } }, function (err, res, body) {
if (err) {
return console.error('upload failed:', err);
}
else {
let data = JSON.parse(body);
console.log('======================================\n', data.name[0]);
}
})