gpt4 book ai didi

coffeescript - 与 CoffeeScript 绑定(bind)

转载 作者:行者123 更新时间:2023-12-04 06:20:31 26 4
gpt4 key购买 nike

如何使用 coffeescript 调用函数对象的 native 绑定(bind)方法?这是我想要实现的示例:

window.addEventListener("load",function(e){
this._filter(true);
}.bind(this);
)

最佳答案

只需在函数周围添加一些括号,以便您可以 .bind正确的事情:

window.addEventListener('load', ((e) ->
this._filter(true)
).bind(this))

那将使用 native bind方法而不是通常的 var _this = this CoffeeScript 的 => 的诡计用途。

关于coffeescript - 与 CoffeeScript 绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17251063/

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