gpt4 book ai didi

javascript - 如何在不绑定(bind)的情况下更改为箭头函数?

转载 作者:行者123 更新时间:2023-12-02 21:34:54 26 4
gpt4 key购买 nike

请帮忙把这部分代码改成不带bind的箭头函数:

this.element.push(setTimeout(this.setSomething.bind(this), 1000 - (new Date()).getMilliseconds()));

最佳答案

Arrow function expressions有一个“词法 this”,这意味着它们的目标将是声明时出现的 this 值。

this.element.push(setTimeout(() => this.setSomething(), 1000 - (new Date()).getMilliseconds()));

关于javascript - 如何在不绑定(bind)的情况下更改为箭头函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60524891/

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