У меня есть этот формат json, когда я console.log(notes)
:
{
"document_tone": {
"tone_categories": [
{
"tones": [
{
"score": 0.027962,
"tone_id": "anger",
"tone_name": "Colère"
},
{
"score": 0.114214,
"tone_id": "sadness",
"tone_name": "Tristesse"
}
],
"category_id": "emotion_tone",
"category_name": "Ton émotionnel"
},
{
"tones": [
{
"score": 0.028517,
"tone_id": "analytical",
"tone_name": "Analytique"
},
{
"score": 0,
"tone_id": "tentative",
"tone_name": "Hésitant"
}
],
"category_id": "language_tone",
"category_name": "Ton de langage"
},
{
"tones": [
{
"score": 0.289319,
"tone_id": "openness_big5",
"tone_name": "Ouverture"
},
{
"score": 0.410613,
"tone_id": "conscientiousness_big5",
"tone_name": "Tempérament consciencieux"
},
{
"score": 0.956493,
"tone_id": "emotional_range_big5",
"tone_name": "Portée émotionnelle"
}
],
"category_id": "social_tone",
"category_name": "Ton social"
}
]
},
"idMedia": 25840
}
это изображение console.log (примечания), я не знаю, почему я получаю пустой массив помимо ожидаемогорезультаты
, но когда я пытаюсь отобразить tone_categories
, я получаю эту ошибку:
TypeError: Cannot read property 'map' of undefined
это код IПостроили пока:
import React, { Component } from 'react';
import logo from './logo.svg';
import './App.css';
class App extends Component {
constructor(props) {
super(props);
this.state = {
notes: [],
};
}
componentWillMount() {
fetch('http://localhost:3000/api/users/analyzeMP3?access_token=GVsKNHWnGWmSZmYQhUD03FhTJ5v80BjnP1RUklbR3pbwEnIZyaq9LmZaF2moFbI6', {
method: 'post',
headers: new Headers({
'Authorization': 'Bearer',
'Content-Type': 'application/x-www-form-urlencoded'
}),
})
.then(response => response.text())
.then(JSON.parse)
.then(notes => this.setState({ notes }));
}
render() {
const { notes } = this.state;
console.log('notes',notes)
return (
<div className="App">
{notes !== undefined && notes !== "" && notes !== [] ? notes.document_tone.map((tone_categories, idx) => {
{console.log('notes',notes.document_tone[tone_categories].category_name)}
}) : null}
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
</div>
);
}
}
export default App;