es6 promise处理访问数据库

es6 promise处理访问数据库,第1张

使用try-catch处理访问数据库错误

//用async await处理promise回调
export async function getAllUser(req,res){
try{
	//db.query()返回的是一个promise对象,将第一个数值解构出来[rows]
	const [rows] = await db.query('select id,user,password from student')
	res.send({status:0,message:'获取成功',data:rows})
	}catch(e){
	res.send({status:1,message:'失败',desc:e.message})
	}
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1296487.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-10
下一篇 2022-06-10

发表评论

登录后才能评论

评论列表(0条)

保存