javascript State com willReceiveProps(do redux)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript State com willReceiveProps(do redux)相关的知识,希望对你有一定的参考价值。

// imports

class Login extends Component {
  state = {
    email: '',
    password: '',
    errors: {}
  }

  componentDidMount() {
    if (this.props.auth.isAuthenticated) {
      this.props.history.push('/dashboard')
    }
  }

  componentWillReceiveProps(nextProps) {
    if (nextProps.auth.isAuthenticated) {
      this.props.history.push('/dashboard')
    }
    if (nextProps.errors) {
      this.setState({ errors: nextProps.errors })
    }
  }
  
  // ...
}

// ...

以上是关于javascript State com willReceiveProps(do redux)的主要内容,如果未能解决你的问题,请参考以下文章

清晰明了的深浅拷贝

如何在 JavaScript 中使用查询中的 php 结果集

python深拷贝浅拷贝

前端应用能从Node.js学到什么

使用 will_paginate gem 在 Rails 3.2.3 中调用 Ajax

python深浅拷贝