gpt4 book ai didi

方法中的 JavaScript 方法

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

我需要在方法中声明方法,并在外部将它们作为对象、方法内涵调用...为了更清楚地说明:

我需要打电话:

Object.Method().nestedMethod();

我怎样才能做到这一点?到目前为止失败了:

function Object(){ 
this.Method = function(){

this.Method.nestedMethod = function(){

};

};

}

当我在 DSL 上工作时,有必要在方法中调用方法。在这种情况下,最后一个方法是前一个方法的某种递归方法,如下所示:

Object.execute(param).recursion();

我必须如何声明嵌套方法才能访问它?

最佳答案

您可以返回一个包含nestedMethod的对象:

Object.Method = function () {
return {
nestedMethod: function () {}
};
}

关于方法中的 JavaScript 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24892280/

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