gpt4 book ai didi

node.js - pg-pool with typescript,无法创建 Pool 对象

转载 作者:太空宇宙 更新时间:2023-11-04 00:17:09 26 4
gpt4 key购买 nike

我有一个 Node 项目,在其中使用 pg-pool 库。我已在我的依赖项中包含以下内容:

"@types/pg-pool": "0.0.3",
"pg": "^7.3.0",
"pg-format": "^1.0.4",
"pg-pool": "^2.0.3",

在我的一个文件中,我尝试使用以下内容创建一个 Pool 对象:

import {PoolConfig, Pool} from "pg-pool";
import config from "./config";

const pool = new Pool(config);

当我尝试执行此代码时,出现以下错误:

TypeError: pg_pool_1.Pool is not a constructor

最佳答案

正确的答案是避免使用 pg-pool 并直接选择 pg,代码现在如下所示:

import {PoolConfig, Pool} from "pg";

然后是依赖项:

"@types/pg": "^7.1.2",
"pg": "^7.3.0",
"pg-format": "^1.0.4",
"pg-pool": "^2.0.3",

关于node.js - pg-pool with typescript,无法创建 Pool 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46345608/

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