Component Communicate
#
父组件传子组件父组件通过 属性=值 的形式来传递给子组件数据,子组件通过 props
参数获取父组件传递过来的数据 👇
Live Editor
Result
SyntaxError: Unexpected token (1:8) 1 : return () ^
#
子组件传父组件在 React 中同样是通过 props
传递消息,只是让父组件给子组件传递一个回调函数,在子组件中调用这个函数即可 👇
Live Editor
Result
SyntaxError: Unexpected token (1:8) 1 : return () ^
#
CaseLive Editor
Result
SyntaxError: Unexpected token (1:8) 1 : return () ^