Too many re-renders. React limits the number of renders to prevent an infinite loop
importReact,{useState,useEffect} from 'react';import axios from 'axios'constTextview=({id})=>{const[label,setLabel]=useState("");
useEffect(()=>{
axios.get("/api/"+id+"/label").then(res=>setLabel(res.data))})return(<div><h1>{label}</h1></div>)}exportdefaultTextview
السؤال
مروان محمود3
عندما اقوم بتنفيذ هذا الكود ياتيني رسالة خطأ
Too many re-renders. React limits the number of renders to prevent an infinite loop
2 أجوبة على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.