admin管理员组文章数量:1344231
I have a simple program which receives some JSON data from a node backend and set received data into state. The problem is it reset state infinite times, creating an infinite rendering.
Here is the JSON data
[
{
"id": 1,
"name": "Product 1",
"category": "C1",
"price": "100"
},
{
"id": 2,
"name": "Product 2",
"category": "C1",
"price": "80"
},
{
"id": 3,
"name": "Product 3",
"category": "C3",
"price": "120"
}
]
Here is the react program.
import React, { useState } from 'react'
const MainApp = () => {
const [products, setProducts] = useState([])
fetch("http://localhost:5000/products")
.then((res) => res.json())
.then((res) => {setProducts(res)})
.catch((err) => console.error(err))
console.log("Products:",products) //This keep getting logged forever.
return (
<h1>Test</h1>
)
}
export default MainApp
What have I done wrong?
I have a simple program which receives some JSON data from a node backend and set received data into state. The problem is it reset state infinite times, creating an infinite rendering.
Here is the JSON data
[
{
"id": 1,
"name": "Product 1",
"category": "C1",
"price": "100"
},
{
"id": 2,
"name": "Product 2",
"category": "C1",
"price": "80"
},
{
"id": 3,
"name": "Product 3",
"category": "C3",
"price": "120"
}
]
Here is the react program.
import React, { useState } from 'react'
const MainApp = () => {
const [products, setProducts] = useState([])
fetch("http://localhost:5000/products")
.then((res) => res.json())
.then((res) => {setProducts(res)})
.catch((err) => console.error(err))
console.log("Products:",products) //This keep getting logged forever.
return (
<h1>Test</h1>
)
}
export default MainApp
What have I done wrong?
Share Improve this question asked Mar 14, 2021 at 7:42 RocktRockt 1231 silver badge7 bronze badges 1-
1
you keep calling fetch everytime the ponent is re-rendered, when you update a state in React, the ponent gets re-rendered, and everything in the whole function is called again, you should put fetch into a
useEffect
hook with an empty dependency to make sure it is only called once at the initial render of the ponent. You can read aboutuseEffect
here: reactjs/docs/hooks-effect.html – Israel Obanijesu Commented Mar 14, 2021 at 7:44
3 Answers
Reset to default 5The fetch is continuously performed on every render of MainApp. Consider using an effect to solve this.
You should only call fetch when ponents mounts. Since you are using hooks, you should use `
useEffect(()=> {
fetch("http://localhost:5000/products")
.then((res) => res.json())
.then((res) => {setProducts(res)})
.catch((err) => console.error(err))
}, [])
`
What you are doing right now, is calling fetch on every render. Imagine it like this. You are rendering the ponent, during that you are fetching something and updating the state. When the state updates, it rerenders the ponents and you are going on an infinite loop.
the problem is in {setProducts(res)}
this will update the state and re-render the ponent then call the fetch function second time and so on
本文标签: javascriptReact simple fetch program run into an infinite loopStack Overflow
版权声明:本文标题:javascript - React simple fetch program run into an infinite loop - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743710159a2525793.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论