我对Node.js和Typescript还是陌生的,
我在Node.js或Typescript上存储全局变量和全局实例时遇到问题
@files client.ts
class Client {
public name;
constructor(name: string){
this.name = name;
}
}
@file file_A.ts
const client[client_id] = new Client(`some_name`);
console.log(client[client_id]) ; // some_name;
@file file_B.ts
console.log(global.client[client_id]) ; // shoold some_name;
我想知道如何存储 file_A.ts 中的实例/变量,我想在 file_B.ts 中访问它,我知道应该使用它导入和导出,但是,我想知道的是如何在不破坏实例的情况下将它设置为可以设置和获取它的全局位置。
谢谢