React中this丢失的四种解决方法
作者:薛定喵的谔
这篇文章主要给大家介绍了关于React中this丢失的四种解决方法,文中通过示例代码介绍的非常详细,对大家的学习或者使用React具有一定的参考学习价值,需要的朋友们下面来一起学习学习吧
发现问题
我们在给一个dom元素绑定方法的时候,例如:
<input type="text" ref="myinput" accept = "image/*" onChange = {this.selectFile} />
React组件中不能获取refs的值,页面报错提示:Uncaught TypeError: Cannot read property 'refs' of null or undefind
小栗子
import React from 'react'; import $ from 'jquery' import '../app.scss'; export default class MyForm extends React.Component { submitHandler (event) { event.preventDefault(); console.log(this.refs.helloTo); var helloTo = this.refs.helloTo.value; alert(helloTo); } render () { return ( <form onSubmit={this.submitHandler}> <input ref='helloTo' type='text' defaultValue='Hello World! ' /> <button type='submit'>Speak</button> </form> ) } }
React中的bind同上方原理一致,在JSX中传递的事件不是一个字符串,而是一个函数(如:onClick={this.handleClick}),此时onClick即是中间变量,所以处理函数中的this指向会丢失。解决这个问题就是给调用函数时bind(this),从而使得无论事件处理函数如何传递,this指向都是当前实例化对象。
解决
解决方案有4种
1、在ES6中可以在构造函数中,直接将当前组件(或者叫类)的实例与函数绑定。
2、在方法调用的时候绑定this
如: <input type="file" ref="myinput" accept = "image/*" onChange = {this.selectFile.bind(this)} />
3、在方法编写结尾的时候绑定this,bind(this)
如:
submitHandler(){ console.log(1) }.bind(this)
4、使用es6 箭头函数 myfn = () =>{ console.log(this.refs.can) }
推荐使用箭头函数,因为最近刚换到react 来,没怎么看就直接cli 来怼,遇到一些小问题记录于此
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对脚本之家的支持。