这个JavaScript的“要求”是什么?

2022-08-29 22:37:08

我试图让JavaScript读/写到PostgreSQL数据库。我在GitHub上找到了这个项目。我能够让以下示例代码在 Node 中运行。

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中工作之前,我必须做.这是怎么回事?我查看了目录,没有找到文件pg。它放在哪里,JavaScript是如何找到它的?npm install pg


答案 1

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

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

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

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

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

  • 在 Node.js 中,每个模块都有自己的作用域。一个模块不能直接访问另一个模块中定义的内容,除非它选择公开它们。要从模块中公开内容,必须将它们分配给 或 。对于一个模块要访问另一个模块的 或 ,它必须使用 require()。exportsmodule.exportsexportsmodule.exports

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

为什么它在节点中工作,但在网页中不起作用?

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

另外,在我让它在node中工作之前,我必须做.这是怎么回事?npm install pg

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

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

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


答案 2

好吧,让我们首先从区分Web浏览器中的Javascript和服务器上的Javascript(CommonJS和Node)开始。

Javascript是一种传统上局限于Web浏览器的语言,其全局上下文有限,主要由后来被称为文档对象模型(DOM)0级(Netscape Navigator Javascript API)定义。

服务器端Javascript消除了这种限制,并允许Javascript调用各种本机代码(如Postgres库)和打开套接字。

现在是一个特殊函数调用,定义为 CommonJS 规范的一部分。在 node 中,它解析 Node 搜索路径中的库和模块,现在通常定义为在同一目录(或调用的 javascript 文件的目录)或系统范围的搜索路径中。require()node_modules

为了尝试回答您的问题的其余部分,我们需要在浏览器中运行的代码和数据库服务器之间使用代理。

由于我们正在讨论 Node,并且您已经熟悉如何从那里运行查询,因此使用 Node 作为代理是有意义的。

举个简单的例子,我们将创建一个URL,该URL以JSON的形式返回有关披头士乐队的一些事实,给定一个名称。

/* your connection code */

var express = require('express');
var app = express.createServer();
app.get('/beatles/:name', function(req, res) {
    var name = req.params.name || '';
    name = name.replace(/[^a-zA_Z]/, '');
    if (!name.length) {
        res.send({});
    } else {
        var query = client.query('SELECT * FROM BEATLES WHERE name =\''+name+'\' LIMIT 1');
        var data = {};
        query.on('row', function(row) {
            data = row;
            res.send(data);
        });
    };
});
app.listen(80, '127.0.0.1');