我设置了一个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())