有没有办法将useSelector()的结果作为prop传递给另一个组件?

时间:2020-10-09 06:34:41

标签: reactjs redux react-props

我已经将useSelector(example)的结果设置为类似这样的const:

const变量= useSelector(示例)

是否有一种方法可以使用钩子将变量作为道具从功能性父组件传递到另一个组件?当我设置this.state.data = this.props.data时,我得到数据:null。

<Component data={variable}/>
export default class Component extends React.Component {
  constructor(props)
     super(props)
         this.state = {
              data: '';
         }
   componentDidMount(){
        this.setState({
             data: <NEED HELP HERE>
          })
    }

}

0 个答案:

没有答案