如何将knex.js连接到PostgresSQL数据库?

时间:2020-02-24 10:40:14

标签: postgresql knex.js

嗨,我正在尝试使用Knex.js将数据库连接到server.js,我试图将用户添加为postgresql,我也试图将主机添加为localhost,但这没有用,我总是得到

下面是当我列出所有数据库时! enter image description here

无法加载资源:服务器的响应状态为400(错误请求)

下面是我尝试注册我时的错误快照!

下面是我的register.js,它应该有助于重新注册数据库!

enter image description here

    const handleRegister = (req, res, db, bcrypt) => {
      const { email, name, password } = req.body;
      if (!email || !name || !password) {
        return res.status(400).json('incorrect form submission');
      }
      const hash = bcrypt.hashSync(password);
        db.transaction(trx => {
          trx.insert({
            hash: hash,
            email: email
          })
          .into('login')
          .returning('email')
          .then(loginEmail => {
            return trx('users')
              .returning('*')
              .insert({
                email: loginEmail[0],
                name: name,
                joined: new Date()
              })
              .then(user => {
                res.json(user[0]);
              })
          })
          .then(trx.commit)
          .catch(trx.rollback)
        })
        .catch(err => res.status(400).json('unable to register'))
    }

module.exports = {
  handleRegister: handleRegister
};

这是我下面的server.js文件!

const express = require('express');
const bodyParser = require('body-parser');
const bcrypt = require('bcrypt-nodejs');
const cors = require('cors');
const knex = require('knex');

const register = require('./controllers/register');
const signin = require('./controllers/signin');
const profile = require('./controllers/profile');
const image = require('./controllers/image');

const db = knex({
  client: 'pg',
  connection: {
    host : 'localhost',
    user : 'postgres',
    database : 'smartbrain1'
  }
});

const app = express();

app.use(cors())
app.use(bodyParser.json());

app.get('/', (req, res)=> { res.send(db.users) })
app.post('/signin', signin.handleSignin(db, bcrypt))
app.post('/register', (req, res) => { register.handleRegister(req, res, db, bcrypt) })
app.get('/profile/:id', (req, res) => { profile.handleProfileGet(req, res, db)})
app.put('/image', (req, res) => { image.handleImage(req, res, db)})
app.post('/imageurl', (req, res) => { image.handleApiCall(req, res)})

app.listen(3000, ()=> {
  console.log('app is running on port 3000');
}) 

这是我在终端中的postgreSQL中创建的快照数据库!

enter image description here

1 个答案:

答案 0 :(得分:1)

您应该首先尝试编写连接pg并运行查询的独立节点应用程序。然后,当您知道连接数据库可以按预期工作时,就可以开始与应用程序的其他部分集成。现在这个问题有太多不相关的信息。

首先尝试在不使用UNIX套接字但使用TCP的情况下从外壳连接SQL Server:

psql postgres://postgres@localhost/smartbrain1

如果失败,则可能意味着您的数据库已配置为不允许任何外部TCP连接。

要允许从本地主机访问postgres,应在pg_hba.conf中通过设置进行操作

host    all             all             127.0.0.1/32            trust

另外,您可能需要为postgres用户添加密码,然后尝试在启用密码的情况下进行连接:

psql postgres://postgres:<password>@localhost/smartbrain1

从命令行连接时,您可以在knex config中尝试以下操作:

const db = knex({
  client: 'pg',
  connection: 'postgres://postgres:<password>@localhost/smartbrain1'
});

Knex:Error Pool2 - error: password authentication failed for user以及其他数十种通用的postgres数据库连接问题都可以找到调试的更多信息。