问题描述
我想在 res.json() 的消息部分打印 orderId 的值,但我在 $ 符号后得到了确切的字符串
if(order.length > 0)
{
res.status(200).json(order);
}
else{
res.json({message: 'No orders Found with orderId ${orderId}'});
}
}).catch(err => console.log(err));
解决方法
if(order.length > 0)
{
res.status(200).json(order);
}
else{
res.json({message: `No orders Found with orderId ${orderId}`});
}
}).catch(err => console.log(err));
使用`(反引号)代替'(单引号)。 ES6 模板字符串