gpt4 book ai didi

javascript - Meteor如何在当前函数中调用另一个函数?

转载 作者:行者123 更新时间:2023-12-03 06:39:17 26 4
gpt4 key购买 nike

我在助手中有一个函数。我想在下一个函数中调用该函数。我怎样才能把它摔下来?

'first_func' ()
{
return "hello";
},
'second_func' ()
{
return this.first_func();
}

这不起作用。我想在第二个函数中调用第一个函数。

谢谢!

最佳答案

按照您尝试执行此操作的方式,您将不需要 this。所以你可以像这样调用第一个函数:

function first_func() {
//`this` is bound to first_func()
return "hello";
}

function second_func () {
//`this` is bound to second_func()
return first_func();
}

second_func(); // returns 'hello'

但是,您似乎正在尝试调用类或方法中的函数。不过,我无法猜测如何或为什么,所以请参阅 Can you write nested functions in JavaScript? 的答案。

关于javascript - Meteor如何在当前函数中调用另一个函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38040888/

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