Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

104
Visualizações
Pase el estado a los padres Y pase otros accesorios de padres a hijos en React

Sé cómo pasar el estado de niño a padre. Y sé cómo pasar apoyos de padres a hijos.

Sin embargo, la forma obvia de hacer ambas cosas al mismo tiempo no parece funcionar como esperaba. Por favor, vea un ejemplo a continuación.

 import React, { useState } from "react"; const Child = (props, { other }) => { // This is what I'd like to achieve but it ignores the {other} prop and doesn't received it from parent // const Child = ({ other }) => { // Works, but the sending of props from child to parent stops working // const Child = (props) => { // Works too but obviously the 'other' prop is not passed anymore return ( <> Child <button onClick={() => props.setValue("New stuff")}>Click!</button> <p>{other}</p> </> ); }; const Parent = () => { const [value, setValue] = useState("Default value"); return ( <> Parent <Child setValue={setValue} other={"Something else"} /> <p>{value}</p> </> ); }; export default Parent;

Intenté pasar ambos como {props, other} , (props, other) , ({props, {other}}) pero nada funcionó.

Aquí hay un enlace a Codesandbox.

about 4 years ago · Juan Pablo Isaza
3 Respostas
Responde à pergunta

0

Use const Child = ({other, ...props }) => {

CodeSandbox: https://codesandbox.io/s/romantic-gagarin-3cgto

about 4 years ago · Juan Pablo Isaza Relatório

0

El parámetro props en este caso en realidad contiene setValue y other accesorios.

La sintaxis de desestructuración también es útil para la legibilidad aquí.

 import React, { useState } from "react"; const Child = (props) => { // destructure both setValue and other out of props const {setValue, other} = props return ( <> Child <button onClick={() => setValue("New stuff")}>Click!</button> <p>{other}</p> </> ); }; const Parent = () => { const [value, setValue] = useState("Default value"); return ( <> Parent <Child setValue={setValue} other={"Something else"} /> <p>{value}</p> </> ); }; export default Parent;
about 4 years ago · Juan Pablo Isaza Relatório

0

Puede acceder a other desde props :

 import React, { useState } from "react"; const Child = (props) => { return ( <> Child <button onClick={() => props.setValue("New stuff")}>Click!</button> <p>{props.other}</p> </> ); }; const Parent = () => { const [value, setValue] = useState("Default value"); return ( <> Parent <Child setValue={setValue} other={"Something else"} /> <p>{value}</p> </> ); }; export default Parent;
about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda