react componentWillReceiveProps
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react componentWillReceiveProps相关的知识,希望对你有一定的参考价值。
componentWillReceiveProps(nextProps){
不加判断 会可能导致组件本身 setState不生效
if(nextProps.isPersonEdit !==this.props.isPersonEdit){
if(‘isPersonEdit‘ in nextProps){
this.setState({isEdit:nextProps.isPersonEdit})
}
}
}
handleSelect(value,option){
this.setState({isEdit:true})
}
以上是关于react componentWillReceiveProps的主要内容,如果未能解决你的问题,请参考以下文章
import * as react from 'react' 与 import react from 'react' 有啥区别
“使用 JSX 时,React 必须在范围内”(react/react-in-jsx-scope 与 index.js 上的“window.React = React”)