gpt4 book ai didi

javascript - 将函数作为参数传递

转载 作者:行者123 更新时间:2023-11-28 12:05:50 25 4
gpt4 key购买 nike

我有两个函数,将其中一个作为参数传递,例如:

var a = function(f)
{
// some code
f();
};

var b = function()
{
};

a(b); // works great, the function a is executed, then the function b is executed

现在我需要将其扩展到树函数,例如:

var a = function(f)
{
// some code
f();
};

var b = function(f)
{
// some code
f();
};

var c = function()
{
};

a(b(c)); // but it does not work. b(c) words like a method and get executed right on the instruction.

我怎样才能做到这一点?

最佳答案

传递一个执行b(c)的包装函数:

a(function() {
b(c);
});

关于javascript - 将函数作为参数传递,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10145702/

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