重新渲染的钩子比上一次渲染的钩子少这可能是由于React Hooks中的意外的return语句引起的

时间:2019-10-18 09:22:12

标签: javascript reactjs react-hooks

// ParentComponent.js

const [content, handleOpen] = useState({content: undefined})
const isLangChange = (e) => {
    fetch(data).then((response) =>
      handleOpen({
        content: response
    })
  }


  <ChildComponent prop1={content}/>
当子组件中存在onChange事件时,会触发

isLangChange函数

有人可以解释吗?

0 个答案:

没有答案