gpt4 book ai didi

javascript - React JS 中这个关键字之前是什么?

转载 作者:可可西里 更新时间:2023-11-01 01:38:45 26 4
gpt4 key购买 nike

我在一些 react-js 库中看到了如下语法。这是什么意思,如何帮助我编写代码?

const inputAttributes = {
id: 'events-playground',
placeholder: 'Where are you now?',
onChange: ::this.onInputChanged,
onBlur: ::this.onInputBlurred
};

谢谢。

最佳答案

这是 .bind 的新 ES7 语法,

等价于 ES5

const inputAttributes = {
id: 'events-playground',
placeholder: 'Where are you now?',
onChange: this.onInputChanged.bind(this),
onBlur: this.onInputBlurred.bind(this)
};

关于javascript - React JS 中这个关键字之前是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32952734/

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