未处理的拒绝错误:用户“ user”的密码身份验证失败

时间:2019-05-09 09:37:59

标签: node.js postgresql knex.js

我设置了一个postgres数据库,并在node.js服务器文件中安装了PostgreSQL和knex.js,并添加了代码以连接到数据库,但是每次我使用邮递员查看是否能够添加用户时,我都会得到此信息错误消息

const db= knex
({

client
 :'pg',

connection:{

host:'127.0.01',

user:'',

password:'',

database:'smartbrain'

}

});


app.post('/register',(req,res)=>{

const {email,name,password}=req.body;

db('user').insert({

email:email,


name:name,

joined:new Date()

})
.then(console.log())

0 个答案:

没有答案