Моя проблема в том, что мне нужно получить ios. Получить некоторые данные.
console.log Mozilla (resp.data):
0: Object { id: 0, category: "Facts almost authentic", question: {…} }
length: 1
И часть моего проекта React.
axios.get('https://localhost:44322/api/Test',{})
.then(resp => {
console.log(resp.data.length); // this gives 1 of course
console.log(resp.data.???) // i need to access 0.question
})
Мне нужно получить доступ ко всем данным внутри «0:». Вопрос в том, возможно ли это?