我试图让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中工作之前,我必须做npm install pg。这是关于什么的?我在目录中找不到pg文件。它把它放在哪里,JavaScript是如何找到它的?
好吧,让我们首先区分一下浏览器中的Javascript和服务器上的Javascript (CommonJS和Node)。
Javascript是一种传统上局限于web浏览器的语言,具有有限的全局上下文,主要由后来被称为文档对象模型(DOM) 0级(Netscape Navigator Javascript API)定义。
服务器端Javascript消除了这种限制,并允许Javascript调用各种本地代码(如Postgres库)和打开套接字。
require()是一个特殊的函数调用,定义为CommonJS规范的一部分。在node中,它解析node搜索路径中的库和模块,现在通常定义为同一目录(或调用javascript文件的目录)中的node_modules或全系统搜索路径。
为了回答您问题的其余部分,我们需要在浏览器中运行的代码和数据库服务器之间使用代理。
由于我们讨论的是Node,并且您已经熟悉如何从那里运行查询,因此使用Node作为代理是有意义的。
作为一个简单的例子,我们将创建一个URL,它以JSON的形式返回关于给定名称的beatles的一些事实。
/* 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');
那么这个“要求”是什么呢?
require()不是标准JavaScript API的一部分。但在Node.js中,它是一个内置函数,有一个特殊的目的:加载模块。
模块是一种将应用程序分割为单独文件的方法,而不是将所有应用程序放在一个文件中。这个概念也出现在其他语言中,只是在语法和行为上略有不同,比如C的include、Python的import等等。
Node.js模块和浏览器JavaScript之间的一个巨大区别是如何从另一个脚本的代码中访问一个脚本的代码。
In browser JavaScript, scripts are added via the <script> element. When they execute, they all have direct access to the global scope, a "shared space" among all scripts. Any script can freely define/modify/remove/call anything on the global scope.
In Node.js, each module has its own scope. A module cannot directly access things defined in another module unless it chooses to expose them. To expose things from a module, they must be assigned to exports or module.exports. For a module to access another module's exports or module.exports, it must use require().
在你的代码中,var pg = require('pg');加载pg模块,一个Node.js的PostgreSQL客户端。这允许你的代码通过pg变量访问PostgreSQL客户端api的功能。
为什么它在节点工作,而不是在网页?
需要(),模块。exports和exports是特定于Node.js的模块系统的api。浏览器不实现这个模块系统。
另外,在我让它在node中工作之前,我必须做npm install pg。这是关于什么的?
NPM是一个包存储库服务,用于托管已发布的JavaScript模块。NPM install是一个命令,允许你从它们的存储库下载包。
它把它放在哪里,Javascript如何找到它?
npm命令行把所有下载的模块放在你运行npm install的node_modules目录下。Node.js有关于模块如何查找其他模块的非常详细的文档,其中包括查找node_modules目录。