? componentWillReceiveProps(nextProps) { //這是狀態(tài)發(fā)生變化是會(huì)調(diào)用該函數(shù)的意思嗎?? ? ? ? if (this.props.sign !== nextProps.sign) {//是如果本次的狀態(tài)和上次狀態(tài)不一樣時(shí)的意思嗎?? ? ? ? ? ? const user = nextProps.sign.get('user');//獲取本次輸入的用戶(hù)? ? ? ? ? ? if (user && user !== this.props.sign.get('user')) {? ? ? ? ? ? ? ? browserHistory.push('/console/')//這是什么意思?? ? ? ? ? ? } else if (nextProps.sign.has('signinError')) {? ? ? ? ? ? ? ? this.props.form.setFieldsValue({password: ''});//設(shè)置password控件的值為空? ? ? ? ? ? ? ? window.alert(nextProps.sign.getIn(['signinError', 'errMsg']));//彈出一個(gè)警示框顯示錯(cuò)誤? ? ? ? ? ? }? ? ? ? }? ? }
我想問(wèn)下這些代碼是什么意思?
慕碼人1183263
2016-10-25 22:34:20