src/prisma/service/ssr.prisma.service.ts:28:26 - error TS2351: This expression is not constructable. Type 'typeof import("/Volumes/work/js/workspace/smws/src/prisma/listener/index")' has no construct signatures.
时间: 2023-06-28 12:10:20 浏览: 281
Prisma:用于 Node.js 和 TypeScript 的下一代 ORM-开源
这个错误是 TypeScript 的类型错误,意思是你在试图实例化一个不能被构造的类型。在这个文件中的第 28 行,你可能在试图实例化一个 `import("/Volumes/work/js/workspace/smws/src/prisma/listener/index")` 的模块。但是,这个模块没有构造函数,不能被实例化。
要解决这个问题,你需要检查一下你的代码,看看在哪里试图实例化这个模块。如果你只是想使用这个模块中的某个函数或变量,你应该使用 `import { functionName } from "/Volumes/work/js/workspace/smws/src/prisma/listener/index"` 这样的方式来导入它,而不是试图实例化它。
阅读全文