Difficile
Que va afficher ce composant ?
const MyComponent = () => {
const [index, setIndex] = useState(1);
setIndex(2);
return <div>{index}</div>;
}
Auteur: Vincent CotroStatut : PubliéeQuestion passée 3590 fois
Modifier
6
Évaluations de la communauté
Auteur anonyme
13/11/2023
Because updating your state will create a new render. You should only update your state conditionnaly (for exemple using a "onClick" or a condition)
The loop will look like this :
- Rendering
- Updating state (with setIndex(2))
- Rendering
- Updating state (with setIndex(2))
etc...
Questions similairesPlus de questions sur React
24
Écrire l'équivalent non-JSX du code suivant :19
Écrire le code manquant pour afficher les enfants du composant UserProfile.13
Écrire un composant React en tant que fonction12
Appeler une fonction au premier rendu d'un composant React10
Enregistrer l'état utilisé pour afficher la page sélectionnée dans un composant React.