时间:2021-05-26
React组件的this是什么
通过编写一个简单组件,并渲染出来,分别打印出自定义函数和render中的this:
import React from 'react';const STR = '被调用,this指向:';class App extends React.Component{ constructor(){ super() } //测试函数 handler() { console.log(`handler ${STR}`,this); } render(){ console.log(`render ${STR}`,this); return( <div> <h1>hello World</h1> <label htmlFor = 'btn'>单击打印函数handler中this的指向</label> <input id = "btn" type="button" value = '单击' onClick = {this.handler}/> </div> ) }}export default App结果如图:
可以看到,render函数中的this指向了组件实例,而handler()函数中的this则为undefined,这是为何?
JavaScript函数中的this
我们都知道JavaScript函数中的this不是在函数声明的时候定义的,而是在函数调用(即运行)的时候定义的
var student = { func: function() { console.log(this); };};student.func();var studentFunc = student.func;studentFunc();这段代码运行,可以看到student.func()打印了student对象,因为此时this指向student对象;而studentFunc()打印了window,因为此时由window调用的,this指向window。
这段代码形象的验证了,JavaScript函数中的this不是在函数声明的时候,而是在函数运行的时候定义的;
同样,React组件也遵循JavaScript的这种特性,所以组件方法的‘调用者'不同会导致this的不同(这里的 “调用者” 指的是函数执行时的当前对象)
“调用者”不同导致this不同
测试:分别在组件自带的生命周期函数以及自定义函数中打印this,并在render()方法中分别使用this.handler(),window.handler(),onCilck={this.handler}这三种方法调用handler():
/App.jsx //测试函数 handler() { console.log(`handler ${STR}`,this); } render(){ console.log(`render ${STR}`,this); this.handler(); window.handler = this.handler; window.handler(); return( <div> <h1>hello World</h1> <label htmlFor = 'btn'>单击打印函数handler中this的指向</label> <input id = "btn" type="button" value = '单击' onClick = {this.handler}/> </div> ) }}export default App可以看到:
继续使用事件触发组件的装载、更新和卸载过程:
/index.jsimport React from 'react'import {render,unmountComponentAtNode} from 'react-dom'import App from './App.jsx'const root=document.getElementById('root')console.log("首次挂载");let instance = render(<App />,root);window.renderComponent = () => { console.log("挂载"); instance = render(<App />,root);}window.setState = () => { console.log("更新"); instance.setState({foo: 'bar'});}window.unmountComponentAtNode = () => { console.log('卸载'); unmountComponentAtNode(root);}使用三个按钮触发组件的装载、更新和卸载过程:
/index.html<!DOCTYPE html><html><head> <title>react-this</title></head><body> <button onclick="window.renderComponent()">挂载</button> <button onclick="window.setState()">更新</button> <button onclick="window.unmountComponentAtNode()">卸载</button> <div id="root"> <!-- app --> </div></body></html>运行程序,依次单击“挂载”,绑定onClick={this.handler}“单击”按钮,“更新”和“卸载”按钮结果如下:
1. render()以及componentDIdMount()、componentDIdUpdate()等其他生命周期函数中的this都是组件实例;
2. this.handler()的调用者,为render()中的this,所以打印组件实例;
3. window.handler()的“调用者”,为window,所以打印window;
4. onClick={this.handler}的“调用者”为事件绑定,来源多样,这里打印undefined。
-面对如此混乱的场景,如果我们想在onClick中调用自定义的组件方法,并在该方法中获取组将实例,我们就得进行转换上下文即绑定上下文:
自动绑定和手动绑定
将this.handler()绑定为组件实例后,this.handler()中的this就指向组将实例,即onClick={this.handler}打印出来的为组件实例;
总结:
React组件生命周期函数中的this指向组件实例;
自定义组件方法的this会因调用者不同而不同;
为了在组件的自定义方法中获取组件实例,需要手动绑定this到组将实例。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
在上一节中,我们讲到了React组件,说了如何使用ES6类创建一个React组件并在其他的地方使用它。这一节我们将讲到React组件的两大灵魂——props和s
使用ES6语法重构React组件在AirbnbReact/JSXStyleGuide中,推荐使用ES6语法来编写react组件。下面总结一下使用ES6class
前言:此文需要有一定react,redux基础,具体学习资料请科学上网。使用create-react-app脚手架具体基础配置请参考配合antd组件实现的管理系
在react组件中,每个方法的上下文都会指向该组件的实例,即自动绑定this为当前组件,而且react还会对这种引用进行缓存,以达到cpu和内存的最大化。在使用
在react-router中组件里面的跳转可以用但是在组件外面改如何跳转,需要用到react路由的historyreplace方法和push方法使用形式一样,r