React中this丢失的解决方法

栏目: IOS · Android · 发布时间: 5年前

内容简介:React中的bind同上方原理一致,在JSX中传递的事件不是一个字符串,而是一个函数(如:onClick={this.handleClick}),此时onClick即是中间变量,所以处理函数中的this指向会丢失。解决这个问题就是给调用函数时bind(this),从而使得无论事件处理函数如何传递,this指向都是当前实例化对象。推荐使用箭头函数,因为最近刚换到react 来,没怎么看就直接cli 来怼,遇到一些小问题记录于此
<input type="text" ref="myinput" accept = "image/*" onChange = {this.selectFile} />

小栗子

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种
<input type="file" ref="myinput" accept = "image/*" onChange = {this.selectFile.bind(this)} />
submitHandler(){
    console.log(1)
}.bind(this)
复制代码
  1. 使用es6 箭头函数 myfn = () =>{ console.log(this.refs.can) }

推荐使用箭头函数,因为最近刚换到react 来,没怎么看就直接cli 来怼,遇到一些小问题记录于此


以上所述就是小编给大家介绍的《React中this丢失的解决方法》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

The Joy of X

The Joy of X

Niall Mansfield / UIT Cambridge Ltd. / 2010-7-1 / USD 14.95

Aimed at those new to the system seeking an overall understanding first, and written in a clear, uncomplicated style, this reprint of the much-cited 1993 classic describes the standard windowing syste......一起来看看 《The Joy of X》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

html转js在线工具
html转js在线工具

html转js在线工具