无法在 Nodejs 中使用参数化查询

编程入门 行业动态 更新时间:2024-10-04 19:24:50

无法在 Nodejs 中使用<a href=https://www.elefans.com/category/jswz/34/1771441.html style=参数化查询"/>

无法在 Nodejs 中使用参数化查询

我正在使用 Nodejs/expressjs,现在我很想执行参数化查询,但是我在 console.log 中收到以下错误,我该如何解决这个问题?

SyntaxError: Missing initializer in destructuring declaration

这是我的代码

[![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);
        if(rows<1)
            {
                const sql2 = `INSERT INTO servicesdetail (userId, serviceId, genderTypeId,price,serviceName) VALUES (?, ?,  ?, ?, ?)`,\[userId, serviceId, genderTypeId, price, serviceName\]`;
                console.log('query is '+ sql);
                const \[datass, _\] = await pool.execute(sql2);
                console.log('last inserted id is ' +datass.insertId);
            }
        else
            {
                console.log('already exist');
            }   
    }
}][1]][1]
回答如下:

更多推荐

无法在 Nodejs 中使用参数化查询

本文发布于:2024-05-30 22:10:04,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1770976.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:参数   Nodejs

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!