在像下面这样的功能性反应组件中,您如何访问从 redux 存储发送过来的道具,类似于如何访问类组件的this.propsin componentDidMount(),如下面的评论所示?import React from 'react';import { connect } from "react-redux";import * as actions from "../../actions";const ComponentName = () => { // componentDidMount() { // this.props; // } return ( <div> <div>???</div> </div> );};function mapStateToProps(state) { return { state };}export default connect(mapStateToProps, actions)(ComponentName);
1 回答
开心每一天1111
TA贡献1836条经验 获得超13个赞
props 将作为功能组件的第一个参数传递。
const ComponentName = (props) => {
return (
<div>
<div>{ props.something }</div>
</div>
);
};
您可以在官方文档中找到更多详细信息https://reactjs.org/docs/components-and-props.html
添加回答
举报
0/150
提交
取消