React组件和通讯

state属性

⌲创建

构造函数中初始化

⌲使用

使用:this.state.属性名

class Test extends React.Component {
    constructor(props) {
        super(props)
        this.state = {
            name: "value"
        }
    }
    render() {
        return (
            <div>
                <h1>{this.state.name}</h1>
            </div>
        )
    }
}
ReactDOM.render(<Test/>,document.getElementById("app"))

⌲修改

修改时使用:this.setState({属性名:新属性值},function(){})

class Test extends React.Component {
    constructor(props) {
        super(props)
        this.state = {
            name: "value"
        }
    }
    render() {
        return (
            <div>
                <h1>{this.state.name}</h1>
                <button onClick={this.change.bind(this)}>点我</button>
            </div>
        )
    }
    change(){
        this.setState({ name: "newValue" });
    }
    shouldComponentUpdate(nextProps,nextState){
        return this.state.name!=nextState.name;
    }
}
ReactDOM.render(<Test/>,document.getElementById("app"))

生命周期

⌲挂载

constructor(props)
render()
componentDidMount()

⌲交互

shouldComponentUpdate(nextProps,nextState){return xxx}
componentWillUpdate(nextProps,nextState)
componentDidUpdate(prevProps,prevState)

⌲销毁

componentWillUnmount()

事件绑定

⌲绑定事件

语法:on+事件名(首字母大写)
例如:
onClick={this.fn.bind(this,其他参数,e)}

constructor:this.fn=this.fn.bind(this)

⌲input绑定value

语法:e.target.value

class Test extends React.Component {
    constructor(props) {
        super(props)
        this.state = {
            name: ""
        }
    }
    render() {
        return (
            <div>
                <h1>{this.state.name}</h1>
                <input type="text" onChange={this.change.bind(this)}/>
            </div>
        )
    }
    change(e){
        var replaceA=e.target.value.replace(/[aA]/g,":)")
        this.setState({name:replaceA})
    }
}
ReactDOM.render(<Test />, document.getElementById("app"))

组件通讯

⌲父传子

详情参考https://blog.csdn.net/Leona__/article/details/122360196?spm=1001.2014.3001.5501

⌲子传父

子组件通过父组件传入的回调函数把数据传递到父组件
React组件和通讯

⌲兄弟通讯

子1-父-子2


今天的分享就是这些啦,欢迎正在学习web的伙伴们“挑毛病”“提意见”,当然了也欢迎各种表扬奥~(比心,比心)
上一篇:React中setState数据合并


下一篇:react学习---路由的简单使用