我正在构建一个 React/Redux 应用程序,查询 API 以获取有关用户的数据。
我试图在这里重用本教程: https ://rackt.org/redux/docs/advanced/ExampleRedditAPI.html
假设我有一个容器组件 UserPage ,它显示给定用户的信息:
class UserPage extends Component {
componentWillMount() {
this.props.dispatch(fetchUser(this.props.user.id));
}
render() {
<UserProfile name={this.props.user.name} />
}
}
const mapStateToProps = (state, ownProps) => {
return {
user: _.find(state.users, (user) => user.id == ownProps.params.userId)),
};
};
const mapDispatchToProps = (dispatch) => {
return {
dispatch
};
};
export default connect(mapStateToProps, mapDispatchToProps)(UserPage);
为了获取当前用户,我进行了 API 调用:
GET /api/users/:userId
我的问题是初始化组件时,属性用户不一定存在。
因此,弹出错误can't call property name on undefined
。
你如何处理你的初始组件状态?你依赖componentWillReceiveProps
刷新你的 UI 吗?你在使用isFetching
属性吗?
谢谢!