gpt4 book ai didi

javascript - 避免在 es6 中使用额外的变量来存储引用

转载 作者:行者123 更新时间:2023-11-29 16:05:45 24 4
gpt4 key购买 nike

我已经在使用 react es6 但在这种情况下,我不知道如何避免将它用于 this:

const that = this;

UploadApi.exec(file).then(data => {
that.setState({ loading : false});
});

最佳答案

在此示例中,您已经在使用箭头函数,因此不需要将reference 存储在单独的变量中。您可以像这样直接使用 this 关键字:

//const that = this;

UploadApi.exec(file).then(data => {
this.setState({ loading : false});
});

当您像这样使用回调方法时,需要将引用存储在一个单独的变量中:

const that = this;

UploadApi.exec(file).then(function(data){
that.setState({ loading : false});
});

但是,您可以通过使用 .bind(this)callback 方法 来避免额外的变量,如下所示:

//const that = this;

UploadApi.exec(file).then(function(data){
this.setState({ loading : false});
}.bind(this));

查看此答案以获得完整的详细信息, arrow function vs function declaration

关于javascript - 避免在 es6 中使用额外的变量来存储引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43314768/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com