分享一个React设置state值的另一种方法

分享一个 React 设置 state 值的另一种方法

import {Component} from "react";
import {Input} from "antd";
class AddUser extends Component{

    state={
        a:""
    }
    focusFn=(e)=>{

        console.log(e)
        this.setState({
            a:"1212"
        })
    }

    BlurFn=(e)=>{
        console.log(e)
        this.setState({
            a:""
        })
    }
    render() {
        console.log(this.a)

        const { a } = this.state;

        return(
            <>
                <Input placeholder="Basic usage" onFocus={this.focusFn} onBlur={this.BlurFn} />
                <label  style={{color:"red"}}>{a}</label>
                <Input placeholder="Basic usage" onFocus={this.focusFn} />
            </>
        )
    }
}
export default AddUser

「点点赞赏,手留余香」

0

给作者打赏,鼓励TA抓紧创作!

微信微信 支付宝支付宝

还没有人赞赏,快来当第一个赞赏的人吧!

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
码云笔记 » 分享一个React设置state值的另一种方法

发表回复