ID CITY DATA
202 Dublin numbertwo
303 Dublin numberthree
404 Dublin numberfour
这是我的axios呼叫,它将用户输入传递到我的快速路线。
An error was encountered performing the requested operation:
Internal demo could not be converted
Vendor code 17059
这是使用用户输入查询数据库的快速路由。在这里,我想将数据库查询的结果设置为一个变量,并将其作为响应发送回axios调用。我想做的事甚至有可能吗?
答案 0 :(得分:0)
你很亲密
app.post('myurl.com', function(req,res) {
const user = req.body.data
const pass = req.body.otherData
const token = await db.call(req,res,user,pass)
res.status(200).send({token})
})
答案 1 :(得分:0)
await
语句应位于async function
内。
app.post('myurl.com', async function(req,res) { //add async to function
//put await statement inside try/catch
try{
const token = await db.call(req,res,user,pass)
res.json({token}) //use json function from resp to send json response
}catch(error){
res.json({error})
}
})