我制作了一个托管本地服务器的简单JS文件,然后使用Node读取数据库并返回结果。我的目的是创建一个仅返回行的页面,然后再创建新页面。
问题是控制台记录了结果,但服务器未连接。我可以制作仅托管服务器的文件,但是放入查询会使服务器无法运行。如何保持查询在服务器上运行?
代码如下:
const pg = require("pg");
const pool = new pg.Pool({
user: "James",
host: "127.0.0.1",
database: "makersBnb",
password: "",
port: "5432"});
pool.query('SELECT * FROM listings', (err, res) => {
console.log(err, res);
pool.end();
});
该表有2行。 这是控制台:
Result {
command: 'SELECT',
rowCount: 2,
oid: null,
rows:
[ { id: 2,
listing_name: 'testListing',
price: '5',
description: 'description',
owner_name: 'me',
email: 'private@email.com',
phone_num: '07777777771' },
{ id: 1,
listing_name: 'a',
price: 'b',
description: 'c',
owner_name: 'd',
email: 'e',
phone_num: 'f' } ],
_parsers:
[ [Function: parseInteger],
[Function: noParse],
[Function: noParse],
[Function: noParse],
[Function: noParse],
[Function: noParse],
[Function: noParse] ],
RowCtor: null,
rowAsArray: false,
_getTypeParser: [Function: bound ] }
答案 0 :(得分:1)
希望我的项目可以给您一些想法。
在postgreSQL文件中:
const {Pool} = require('pg');
const config = require('../config');
const postgre = config.postgre;
const pool = new Pool(postgre);
module.exports = {
getList: (/* could add params here */ callback) => {
let param = []; //if there is params add to here in sequence,
// for text using let param = [email]
let query = 'select * from listings;'
// text is sample using params;
let text = 'select * from users where email=$1';
return pool.query(text, param, callback)
},
// here you can add more functions as you like.
}
在app.js中
const db = require('/postgresql') //import the file abave
app.get('/getList',(req,res)=>{
db.getList((err,messageFromDB)=>{
if (err) {
console.log(err);
} else {
res.send(messageFromDB.rows);
}
})
}
这将使每次调用/ getList和数据库(node.js服务器)返回结果。或者您也可以简单地console.log结果或执行其他操作。
更新:在查看我的答案并查看了您的问题时,如果希望服务器继续运行,则不应致电pool.end();
。