0

我正在构建一个 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属性吗?

谢谢!

4

1 回答 1

0

您可以简单地使用条件。

class UserPage extends Component {
    componentWillMount() {
        this.props.dispatch(fetchUser(this.props.user.id));
    }

    renderUser() {
        if (this.props.user) {
            return (
                <UserProfile name={this.props.user.name} />
            )
        }
    }

    render() {
        return (
            <div>{this.renderUser()}</div>
        )
    }
}

正如您所提到的,您可能希望拥有一个“isFetching”属性并在为真时渲染一个微调器或其他东西。

于 2016-02-11T17:03:53.847 回答