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的主要内容,如果未能解决你的问题,请参考以下文章

react插件网站,react插件社区,react中文论坛

「首席架构师推荐」React生态系统大集合

import * as react from 'react' 与 import react from 'react' 有啥区别

“使用 JSX 时,React 必须在范围内”(react/react-in-jsx-scope 与 index.js 上的“window.React = React”)

React 系列教程

React学习笔记-1-什么是react,react环境搭建以及第一个react实例