小编典典

这个 JavaScript “要求”是什么?

all

我正在尝试让 JavaScript 读取/写入 PostgreSQL 数据库。我在 GitHub
上找到了这个项目。我能够获得以下示例代码以在 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 是如何找到它的?


阅读 156

收藏
2022-03-04

共1个答案

小编典典

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

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

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

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

  • 在浏览器 JavaScript 中,脚本是通过<script>元素添加的。当它们执行时,它们都可以直接访问全局范围,即所有脚本之间的“共享空间”。任何脚本都可以在全局范围内自由定义/修改/删除/调用任何内容。

  • 在 Node.js 中,每个模块都有自己的作用域。一个模块不能直接访问另一个模块中定义的东西,除非它选择公开它们。要从模块中公开事物,必须将它们分配给exportsor module.exports。一个模块要访问另一个模块的exportsor module.exports它必须使用require().

在您的代码中,var pg = require('pg');加载pg模块,即
Node.js 的 PostgreSQL 客户端。这允许您的代码通过pg变量访问 PostgreSQL 客户端 API 的功能。

为什么它在节点中工作而不在网页中工作?

require()module.exports并且exports是特定于 Node.js 的模块系统的 API。浏览器不实现这个模块系统。

此外,在我让它在节点中工作之前,我必须做npm install pg. 那是怎么回事?

NPM是一个包存储库服务,用于托管已发布的 JavaScript 模块。npm install是一个命令,可让您从其存储库下载包。

它放在哪里,Javascript 是如何找到它的?

npm cli 将所有下载的模块放在node_modules您运行的目录中npm installNode.js
有关于模块如何查找其他模块
的非常详细的文档,其中包括查找node_modules目录。

2022-03-04