我正在使用Nodejs/Express,现在我正在尝试从数据库中获取总记录,但我得到的是“无/空”,这是我的模型文件代码,我错在哪里?
static async addServiceDetail(shopId,serviceId,genderTypeId,price,serviceName)
{
const sql = `SELECT id from hc_servicesdetail WHERE shopId='${shopId}' AND serviceId='${serviceId}' AND genderTypeId='genderTypeId'`;
const [rows, fields] = await pool.execute(sql);
console.log('total rows are'+ rows); // getting empty
if(rows<1)
{
//further code
}
}
1条答案
按热度按时间qjp7pelc1#
没有更多的代码很难,但我注意到你的
genderTypeId
应该在${}
中吗?:出发地:
收件人: