I have a json file call data.json such as ( I use React.js):
[{"id": 1,"title": "Child Bride"},
{"id": 2, "title": "Last Time I Committed Suicide, The"},
{"id": 3, "title": "Jerry Seinfeld: 'I'm Telling You for the Last Time'"},
{"id": 4, "title": "Youth Without Youth"},
{"id": 5, "title": "Happy Here and Now"},
{"id": 6, "title": "Wedding in Blood (Noces rouges, Les)"},
{"id": 7, "title": "Vampire in Venice (Nosferatu a Venezia) (Nosferatu in Venice)"},
{"id": 8, "title": "Monty Python's The Meaning of Life"},
{"id": 9, "title": "Awakening, The"},
{"id": 10, "title": "Trip, The"}]
Im my ponentDidMount I have the below:
fetch('./data/data.json')
.then((response) => response.json())
.then((findresponse)=>{
console.log(findresponse.title)
this.setState({
data:findresponse.title,
})
})
}
and in my render:
<ul>
<li> {this.state.title}</li>;
</ul>
I would like to list all the title from my json file,
Otherwise it says that .then((response) => response.json()) is an anonymous function . . .
How to fix this ? I'm a bit confused
many thanks
I have a json file call data.json such as ( I use React.js):
[{"id": 1,"title": "Child Bride"},
{"id": 2, "title": "Last Time I Committed Suicide, The"},
{"id": 3, "title": "Jerry Seinfeld: 'I'm Telling You for the Last Time'"},
{"id": 4, "title": "Youth Without Youth"},
{"id": 5, "title": "Happy Here and Now"},
{"id": 6, "title": "Wedding in Blood (Noces rouges, Les)"},
{"id": 7, "title": "Vampire in Venice (Nosferatu a Venezia) (Nosferatu in Venice)"},
{"id": 8, "title": "Monty Python's The Meaning of Life"},
{"id": 9, "title": "Awakening, The"},
{"id": 10, "title": "Trip, The"}]
Im my ponentDidMount I have the below:
fetch('./data/data.json')
.then((response) => response.json())
.then((findresponse)=>{
console.log(findresponse.title)
this.setState({
data:findresponse.title,
})
})
}
and in my render:
<ul>
<li> {this.state.title}</li>;
</ul>
I would like to list all the title from my json file,
Otherwise it says that .then((response) => response.json()) is an anonymous function . . .
How to fix this ? I'm a bit confused
many thanks
Share Improve this question asked May 11, 2018 at 11:56 tibewwwtibewww 6034 gold badges13 silver badges33 bronze badges 4-
Your response isn't an object with a title property, it's an array of objects, all of which have title properties.
this.setState({ data: findresponse });
and then in your render{this.state.data.map(x => x.title).join(',')}
– Jared Smith Commented May 11, 2018 at 11:59 - hmm so what should I do ? do you have any example ? – tibewww Commented May 11, 2018 at 11:59
- thank you, I have replace the above but it now i have this.state.data.map is not a function on {this.state.data.map(x => x.title).join(',')} ?? My json call from the public folder – tibewww Commented May 11, 2018 at 12:02
- Then you didn't post your actual code, or your fetch response isn't the same as the json you described. – Jared Smith Commented May 11, 2018 at 12:03
3 Answers
Reset to default 4You can use async/await. It requires fewer lines of code.
async getData(){
const res = await fetch('./data/data.json');
const data = await res.json();
return this.setState({data});
}
In the ponentDidMount() call the function i.e.
ponentDidMount(){
this.getData();
}
Finally, in your render, you map the array of data
render (){
return {<ul>{this.state.data.map(item => <li>{item.title}</li>)} </ul>
)
}
Your response isn't an object with a title property, it's an array of objects, all of which have title properties.
this.setState({ data: findresponse });
and then in your render
<ul>
{this.state.data.map((x, i) => <li key={i}>x.title</li>)}
</ul>
You get the array of objects, thus you need to store then whole object in your state and then from the state read all title properties.
Your fetch should look as follows:
fetch('./data/data.json')
.then((response) => response.json())
.then((findresponse)=> {
this.setState({
data:findresponse
})
})
And then in your render you should have something as follows:
render(){
return (
<ul>{this.state.data.map(item => <li>{item.title}</li>)} </ul>
)
}
That will give you all title properties from data object.