React 中的 ref 的如何使用【方法总结】

今天爱分享给大家带来react 中的 ref 的如何使用【方法总结】,希望能够帮助到大家。

方式1:string类型绑定

类似于vue中的ref绑定方式,可以通过this.refs.绑定的ref的名字获取到节点dom

import React from 'react'
class CommentForm extends React.Component
{
    constructor(){
        super();
        this.addComment = this.addComment.bind(this);
    }
    addComment(e){
        var user = this.refs.user.value;
        var content = this.refs.content.value;
    }
    render()
    {
        return (
            

) } } export {CommentForm as default}

注意:的是 这种方式已经不被最新版的react推荐使用,使用会报错
index.js:1 Warning: A string ref, “user”, has been found within a strict mode tree. String refs are a source of potential bugs and should be avoided. We recommend using useRef() or createRef() instead.

方法2:react.CreateRef()

通过在class中使用React.createRef()方法创建一些变量,可以将这些变量绑定到标签的ref中
那么该变量的current则指向绑定的标签dom

import React from 'react'
class CommentForm extends React.Component
{
    constructor(){
        super();
        this.addComment = this.addComment.bind(this);
    }
    user = React.createRef();
    content = React.createRef();
    addComment(e){
        var user = this.user.current.value;
        var content = this.content.current.value;
    }
    render()
    {
        return (
            

) } } export {CommentForm as default}

方法3:函数形式

在class中声明函数,在函数中绑定ref
使用这种方法可以将子组件暴露给父组件以使得父组件能够调用子组件的方法

import React from 'react'
class CommentForm extends React.Component
{
    constructor(){
        super();
        this.addComment = this.addComment.bind(this);
    }
    user = null;
    content = null;
    fnUser = el => this.user = el;
    fnContent = el => this.content = el;
    addComment(e){
        var user = this.user.value;
        var content = this.content.value;
        console.log(user);
        console.log(content);
    }
    render()
    {
        return (
            

) } } export {CommentForm as default}

注意:

react并不推荐过度使用ref,如果能通过state做到的事情,就不应该使用 refs 在你的 app 中“让事情发生”。过度使用ref并不符合数据驱动的思想

人已赞赏
前端

React 路由传参的方式有哪些?【最全总结】

2020-11-1 15:56:20

前端

React 事件处理程序 this undefined 如何处理【方法总结】

2020-11-1 16:09:12

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
'); })();