gpt4 book ai didi

javascript - 高阶函数引用JS

转载 作者:行者123 更新时间:2023-12-02 14:45:06 25 4
gpt4 key购买 nike

下面的代码可以工作,但我觉得还有更好的方法。我正在传递对高阶函数范围的引用。

    var p=this;
this.nodeModal.find(".modal-footer .save").click(function(){
p.saveAndClose();
});

是否有更简单的方法来传递高阶函数的引用?某种绑定(bind)?

最佳答案

或者,如果您使用的是 ES6,带有箭头函数:

this.nodeModal.find(".modal-footer .save").click(() => {
this.saveAndClose();
});

关于javascript - 高阶函数引用JS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36680038/

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