gpt4 book ai didi

javascript - 如何在 Node.js 的当前上下文中嵌入对象?

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

我有一个node.js脚本文件。我需要一个具有静态函数的类。我想将类直接嵌入到脚本的当前上下文中,这样我就可以调用类的函数名称,而无需引用类名称。

在类文件中:

class SomeClass {
static doIt() {...}
}

在脚本文件中:

let cls = require('SomeClass');

// **** embed class into current context here ***

// Just call the function without class reference
doIt();

我以前见过这样做的。无法在网上找到如何执行此操作。

最佳答案

您可以使用解构来做到这一点:

class SomeClass {
static doIt() {...}
static otherFunc() {...}
}

const { doIt, otherFunc } = SomeClass;

doIt();

关于javascript - 如何在 Node.js 的当前上下文中嵌入对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61108118/

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