ChatGPT解决这个技术问题 Extra ChatGPT

这个 JavaScript “要求”是什么?

我正在尝试让 JavaScript 读取/写入 PostgreSQL 数据库。我在 GitHub 上找到了这个 project。我能够获得以下示例代码以在 Node.js 中运行。

var pg = require('pg'); //native libpq bindings = `var pg = require('pg').native`
var conString = "tcp://postgres:1234@localhost/postgres";

var client = new pg.Client(conString);
client.connect();

//queries are queued and executed one after another once the connection becomes available
client.query("CREATE TEMP TABLE beatles(name varchar(10), height integer, birthday timestamptz)");
client.query("INSERT INTO beatles(name, height, birthday) values($1, $2, $3)", ['Ringo', 67, new Date(1945, 11, 2)]);
client.query("INSERT INTO beatles(name, height, birthday) values($1, $2, $3)", ['John', 68, new Date(1944, 10, 13)]);

//queries can be executed either via text/parameter values passed as individual arguments
//or by passing an options object containing text, (optional) parameter values, and (optional) query name
client.query({
  name: 'insert beatle',
  text: "INSERT INTO beatles(name, height, birthday) values($1, $2, $3)",
  values: ['George', 70, new Date(1946, 02, 14)]
});

//subsequent queries with the same name will be executed without re-parsing the query plan by postgres
client.query({
  name: 'insert beatle',
  values: ['Paul', 63, new Date(1945, 04, 03)]
});
var query = client.query("SELECT * FROM beatles WHERE name = $1", ['John']);

//can stream row results back 1 at a time
query.on('row', function(row) {
  console.log(row);
  console.log("Beatle name: %s", row.name); //Beatle name: John
  console.log("Beatle birth year: %d", row.birthday.getYear()); //dates are returned as javascript dates
  console.log("Beatle height: %d' %d\"", Math.floor(row.height/12), row.height%12); //integers are returned as javascript ints
});

//fired after last row is emitted
query.on('end', function() { 
  client.end();
});

接下来我试图让它在网页上运行,但似乎没有任何反应。我检查了 JavaScript 控制台,它只是说“需要未定义”。

那么这个“要求”是什么?为什么它在 Node 中有效,但在网页中无效?

此外,在我让它在 Node 中工作之前,我必须做 npm install pg。那是怎么回事?我查看了目录并没有找到文件 pg.它放在哪里,JavaScript 是如何找到它的?

require 不是 javascript 的一部分,它是 nodejs 中使用的关键字。 nodejs 不是您使用客户端的 DOM。因此可能与 nodejs 一起使用的脚本可能无法在浏览器中运行。你可以在 nodejs 中调用 window 或 document 吗?不,与浏览器的要求相同。
如何更改上面的代码以便它可以在浏览器中运行?
您不能直接从网页与 Pg 交谈;你需要能够打开一个普通的 tcp/ip 套接字,你可以通过它发送和接收二进制数据,没有网络浏览器会让你这样做。您所指的库是 node.js 的扩展,在客户端 JavaScript 中不起作用。我强烈建议您通过您的网络服务器和 JSON 请求/回复从客户端与您的 PostgreSQL 服务器通信。
我在本地运行 PostgreSQL。我需要为网络服务器安装什么?
节点?这是一个非常好的网络服务器,或者可以是一个本地安装的网络服务器。

J
Joseph

那么这个“要求”是什么?

require() 不是标准 JavaScript API 的一部分。但在 Node.js 中,它是一个具有特殊用途的内置函数:to load modules

模块是一种将应用程序拆分为单独文件的方法,而不是将所有应用程序放在一个文件中。这个概念也存在于其他语言中,在语法和行为方面存在细微差别,例如 C 的 include、Python 的 import 等。

Node.js 模块和浏览器 JavaScript 之间的一大区别是如何从另一个脚本的代码访问一个脚本的代码。

在浏览器 JavaScript 中,脚本是通过