gpt4 book ai didi

javascript - Node.js - 类型错误 : Client is not a constructor

转载 作者:行者123 更新时间:2023-12-02 16:26:08 24 4
gpt4 key购买 nike

我正在尝试以下操作:

  const { Client } = require('pg');

console.log(Client);

const client = new Client({
user: 'Username censored',
host: 'Host censored',
database: 'gisuebung',
password: 'Passworded censored',
port: 5432,
});

client.connect();

但是,当我运行它时,出现以下错误:v-on 处理程序中的错误:“类型错误:客户端不是构造函数”

我是根据我在网上找到的一个片段写下这篇文章的,似乎在我看来到处都有人在做同样的事情。谁能告诉我我做错了什么?

最佳答案

这是一个 JS 错误:

试试这个,它对我有用:
const { Client } = require('pg');
const Client = require('pg').Client;

-- ES模块:
从“pg”导入 pg;
const Client = pg.Client;

关于javascript - Node.js - 类型错误 : Client is not a constructor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64504089/

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