React--ref

本文介绍了在React中如何使用Refs来直接访问DOM节点,包括推荐的创建Ref对象的方式,直接赋值给实例属性的方法,以及即将废弃的使用refs属性的经典方法。通过Refs,可以实现对输入框值的计算并更新显示结果。
摘要由CSDN通过智能技术生成

React中我们可以使用Refs来访问 DOM 节点

使用方式:

方式一(推荐)

class Add extends React.Component {
  constructor(props) {
    super(props)
    this.num1 = React.createRef();
    this.num2 = React.createRef();
    this.result = React.createRef();
  }
  
  add = ()=>{
    let num1 = this.num1.current;
    let num2 = this.num2.current;
    let result = this.result.current;
    result.value = parseFloat(num1.value) + parseFloat(num2.value);
  }
  render(){
    return (
      <>
        <input ref={ this.num1 } />
        <input ref={ this.num2 } />
        <button onClick={ this.add }>=</button>
        <input ref={ this.result } />
      </>
    )
  }
}

方式二

class Add extends React.Component {
  add = ()=>{
    let num1 = this.num1;
    let num2 = this.num2;
    let result = this.result;
    result.value = parseFloat(num1.value) + parseFloat(num2.value);
  }
  render(){
    return (
      <>
        <input ref={ el => this.num1 = el } />
        <input ref={ el => this.num2 = el } />
        <button onClick={ this.add }>=</button>
        <input ref={ el => this.result = el } />
      </>
    )
  }
}

方式三(即将删除,不建议使用)

class Add extends React.Component {
  add = ()=>{
    let num1 = this.refs.num1;
    let num2 = this.refs.num2;
    let result = this.refs.result;
    result.value = parseFloat(num1.value) + parseFloat(num2.value);
  }
  render(){
    return (
      <>
        <input ref="num1" />
        <input ref="num2" />
        <button onClick={ this.add }>=</button>
        <input ref="result" />
      </>
    )
  }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值