我正在尝试从Node JS / Express连接到postgres数据库。邮递员没有回应

时间:2019-04-21 08:51:54

标签: javascript node.js postgresql express

有一点,该端口处于活动状态并且可以正常工作,但是Postman没有响应。

现在,即使它包含在内,它甚至都无法识别表达。有人可以帮忙吗,我已经尝试了好几天了...

我尝试更改为使用knex连接到postgres数据库,并在Pg admin中创建了该数据库,但是它不起作用。我希望有几种登录,注册和删除用户个人资料的途径,但是Express出于某种原因似乎无法正常工作。我试图将app.post(register)中的.catch更改为.catch(err => res.json(err)),我也安装了Chrome的corse扩展名,但也没有用。我从代码中修改了一些单词(使用母语进行了修改,因此更易于查看,如果您错过了某个地方,我深表歉意。我不得不粘贴整个代码,因为错误可能是我遗漏的部分。此时,在输出中,Express无法识别为已安装。

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


const app = express();
app.use(bodyParser.json());
app.use(cors());

let db = knex({
    client: 'pg',
    connection: {
      host : '127.0.0.1',
      user : 'postgres',
      password : '12345',
      database : 'users'
    }
  });
/*app.get('/', (req, res) => {
  db.select('*').from('users').then(data => {res.json(data)});
})*/
//USER LOGIN
  app.post('/signin', (req, res) => {
    db.select('email', 'hash').from('login')
      .where('email', '=', req.body.email)
      .then(data => {
        const isValid = bcrypt.compareSync(req.body.password, data[0].hash);    
        if (isValid) {
        return db.select('*').from('login')
        .where('email', '=', req.body.email)
        .then(user => {
          res.json(user[0])
        })
        .catch(err => res.status(400).json('Cannot find user'))
        } else {
          res.status(400).json('Incorrect log in data')
        }
       })
       .catch(err => res.status(400).json('Incorrect data'))
    });
// REGISTER USER
    app.post('/register', (req, res) => {
      const {email, name, password} = req.body;
      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,
                    resgistered: new Date()
                  })
                .then(user => {
                  res.json(user[0]);
                })
            })
            .then(trx.commit)
            .catch(trx.rollback)
          })
          .catch(err =>res.json(err))
    });
// user profile
    app.get('/profile/:id', (req, res) => {
        const {id} = req.params;
        db.select('*').from('users').where( {id: id})
        .then(user => {
        if (user.length) {
        res.json(user[0])
        } else {
        res.status(400).json('User not found')
        }
        });
    });

    app.get('/allusers', (req, res) => {
      //const {id} = req.params;
      //db.select('*').from('korisnici').then(data => {console.log(data)});
      db.select('*').from('users').then(data => {res.json(data)});
    });
//delete user
app.delete('/users/:name', (req, res) =>{
  const email = req.params.email;
  db.select()
    .from('users').where({email: email}).del()
    .then((users) =>{
        db.select()
        .from('login').where({email: email}).del()
        .then(() => {
            res.json(`user ${email} deleted`);
        });
    }).catch((error) => {
        console.log(error);
    });
});
//APPLICATION PORT
app.listen(3000, () =>{
    console.log(('Port 3000 active'));
    //res.send('Database active at port 3000')
});

1 个答案:

答案 0 :(得分:0)

确保安装了pg模块:

 npm install pg --save

您确定您的数据库名为users吗?如果是这样,那么在您的情况下,您需要在login数据库中有一个users表。然后还将一些数据从pg admin插入到您的users.login中。

您也可以尝试使用SQL查询直接从pg admin查询数据,以确保数据确实存在:

SELECT * FROM users.login;

然后创建以下路由:

app.get('/', (req, res) => {
  db.select('*').from('login').then(data => {
    console.log(data);
    res.json(data);
  });
});

然后尝试从邮递员GET http://localhost:3000发送请求。

注意:我建议您在db中使用表的正确命名,但不确定要调用表login。并尝试使用async \ await而不是与.then

嵌套

另一种解决方案是遵循此简单的tutorial

从头开始创建项目