1

如何在 React 生命周期方法中正确调度操作?

你好,朋友们,我checkSession()在我的父组件(App.jsx)中调用了一个动作。此操作可帮助我获取用户信息。
这就是 App.jsx 的样子:

class App extends Component {
  componentWillMount() {
    this.props.checkSession();
  }
  render() {
    if (this.props.auth === null) {
      return <div>Loading...</div>;
    } else {
       return (
         <BrowserRouter>
           <Route path="/cart" component={Cart} />
         </BrowserRouter>
      );
    }
  }
}
const mapStateToProps = ({ auth }) => { auth };
export default connect(mapStateToProps, { checkSession })(App);

如何在 Cart.jsx 组件中正确调度另一个操作。我尝试在componentWillReceiveProps方法内调度操作,但它会创建一个无限循环。我的 Cart.jsx 组件如下所示:

import { getCart } from "../../actions"; 

class Cart extends Component {
  componentWillReceiveProps(nextProps, nextState) {
    if (nextProps.auth) {
      this.props.getCart(nextProps.auth.googleId);
    } else {
      this.props.getCart(null);
    }
  }
  render() {
    ......some staff  
  }
}
const mapStateToProps = ({ auth }) => { auth };
export default connect(mapStateToProps, { getCart })(Cart);

我刚刚尝试在 ComponentWillMount 中调度这个动作 - 但我的道具还没有准备好,所以我得到了一个错误。请帮我提供任何建议,并为我的英语感到抱歉。

4

1 回答 1

2

也许您必须在触发调度之前检测道具是否已更改:

componentWillReceiveProps(nextProps, nextState) {
    const currentId = this.props.auth && this.props.auth.googleId;
    const nextId = nextProps.auth && nextProps.auth.googleId;
    if (currentId !== nextId) {
        this.props.getCart(nextProps.auth.googleId);
    }
}
于 2018-03-23T09:34:19.853 回答