gpt4 book ai didi

typescript - 在 typescript 中使用同一文件夹中的类

转载 作者:搜寻专家 更新时间:2023-10-30 20:59:20 25 4
gpt4 key购买 nike

我有一个类 test.ts

export class Test1 {

}

我在同一文件夹中有另一个类 usetest.ts 给我错误

import Test = require("test");//error say cannot find test
var t = new Test.Test1();

但如果我指定

 import Test = require("./test");//no error
var t = new Test.Test1();

那么就没有错误了。什么“./”是必要的?无论如何我们可以省略它吗?

最佳答案

What the "./" is necessary?

Can we omit it in anyway?

不容易。它需要在 ./node_modules/test.ts 中才能使 require('test') 正常工作。

更多

这是完整的 nodejs 模块规范:https://nodejs.org/api/modules.html#modules_all_together ...它有点多,但如果您正在进行 NodeJS 开发,我强烈建议您阅读它 🌹

关于typescript - 在 typescript 中使用同一文件夹中的类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33644712/

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