React学习笔记——类中的方法内部的this指向

类中的方法内部的this指向

在用react实现一个点击切换内容小demo时的,发现类中方法内部的this是指向undefined的。

代码如下:

<div id="test"></div>
    <script type="text/javascript" src="../JS/react.development.js"></script>
    <script type="text/javascript" src="../JS/react-dom.development.js"></script>
    <script type="text/javascript" src="../JS/babel.min.js"></script>

    <script type="text/babel">
        class  Weather extends React.Component{
            constructor(props){
                super(props)
                this.state ={
                    isHot:false
                }
            }
            render(){
                return <h1 onClick={this.weatherClick}>今天天气很{this.state.isHot ? '炎热':'凉爽'}</h1>
            }
            weatherClick(){
                
                console.log(this);
            }
        }
        ReactDOM.render(<Weather/>,document.getElementById('test'))
    </script> 

点击结果如下:
React学习笔记——类中的方法内部的this指向
原因:
①首先,weatherClick放在那里? –Weather的原型对象上,供实例使用;
由于weatherClick在代码中是作为onClick的回调,所以不是通过实例调用的,是直接调用的,因此并不是这个组件实例了;
②此外,由于类中的方法默认开启了局部的严格模式,因此weatherClick中的this为undefined


验证严格模式会导致函数中的this指向变为undefined

代码如下:
React学习笔记——类中的方法内部的this指向

执行结果:
React学习笔记——类中的方法内部的this指向
我们发现,在普通函数中,this的指向是window
但是在严格模式下,this的指向变味了undefined

修改方法:使用bind方法对weatherClick方法进行重包装。

<div id="test"></div>
    <script type="text/javascript" src="../JS/react.development.js"></script>
    <script type="text/javascript" src="../JS/react-dom.development.js"></script>
    <script type="text/javascript" src="../JS/babel.min.js"></script>

    <script type="text/babel">
        class  Weather extends React.Component{
            constructor(props){
                super(props)
                this.state ={
                    isHot:false
                }
                // 解决weatherClick方法中的this指向问题
                this.weatherClick = this.weatherClick.bind(this);
            }
            render(){
                return <h1 onClick={this.weatherClick}>今天天气很{this.state.isHot ? '炎热':'凉爽'}</h1>
            }
            weatherClick(){
                // weatherClick放在那里? --Weather的原型对象上,供实例使用
                // 由于weatherClick是作为onClick的回调,所以不是通过实例调用的,是直接调用的
                // 类中的方法默认开启了局部的严格模式,因此weatherClick中的this为undefined
                console.log(this);
            }
        }
        ReactDOM.render(<Weather/>,document.getElementById('test'))
    </script> 

核心:使weatherClick的this重新绑定为这个Weather组件实例

// 解决weatherClick方法中的this指向问题
this.weatherClick = this.weatherClick.bind(this);

执行效果:
React学习笔记——类中的方法内部的this指向
完整demo代码:

<div id="test"></div>
    <script type="text/javascript" src="../JS/react.development.js"></script>
    <script type="text/javascript" src="../JS/react-dom.development.js"></script>
    <script type="text/javascript" src="../JS/babel.min.js"></script> 

    <script type="text/babel">
        class  Weather extends React.Component{
            constructor(props){
                super(props)
                this.state ={
                    isHot:false
                }
                // 解决weatherClick方法中的this指向问题
                this.weatherClick = this.weatherClick.bind(this);
            }
            render(){
                return <h1 onClick={this.weatherClick}>今天天气很{this.state.isHot ? '炎热':'凉爽'}</h1>
            }
            weatherClick(){
                // weatherClick放在那里? --Weather的原型对象上,供实例使用
                // 由于weatherClick是作为onClick的回调,所以不是通过实例调用的,是直接调用的
                // 类中的方法默认开启了局部的严格模式,因此weatherClick中的this为undefined
                console.log(this)
                const isHot = this.state.isHot;
                this.setState({
                    isHot:!isHot
                })
            }
        }
        ReactDOM.render(<Weather/>,document.getElementById('test'))
    </script> 
上一篇:为什么阿里巴巴禁止开发人员 boolean 类型变量使用 isXXX 来命名?


下一篇:React三大属性state,props,ref的用法