Typescript引入ref的注意事项

Typescript引入ref的注意事项

//Jsx的类组件使用ref两种方式:

      //第一种
      {
        constructor() {//第一步注册
          super()
          this.ref = React.createRef()//用此方法来创建ref。将其赋值给一个变量,通过ref挂载在dom节点或组件上,用ref的current属性来获取节点或示例
        }
       componentDidMount() {
          this.ref.current.value = 'ref get input'//第三步首次使用
        }
        return <TargetComponent ref={this.ref} />//第二步绑定,//ref本身是一个对象, 
      }

       //第二种方法
        return(
          <Input
            ref={(input)=>this.inputRef=input}  //此时ref其实是一种回调函数,入参是dom节点或组件实例,使用this.inputRef即可获取节点
          />
        )
     //tsx中使用,tsx中方规范较多,具体使用如下
      //如果正在使用16.3+,则使用如下
      class TestApp extends React.Component<AppProps, AppState> {
        private stepInput: React.RefObject<HTMLInputElement>;
        constructor(props) {
            super(props);
            this.stepInput = React.createRef();
        }
        render() {
            return <input type="text" ref={this.stepInput} />;
        }
      }	

		//如果使用的更早的版本(<16.3),则需使用callback-ref
			class TestApp extends React.Component<AppProps, AppState> {
          private stepInput: HTMLInputElement;//此句话也要存在
          constructor(props) {
              super(props);
              this.stepInput = null;
              this.setStepInputRef = element => {//使用element回调来绑定ref
                  this.stepInput = element;
              };
          }
          render() {
              return <input type="text" ref={this.setStepInputRef} />
          }
      }

参考文档:

https://stackoverflow.com/questions/33796267/how-to-use-refs-in-react-with-typescript

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值