我正在使用普通的http请求使用node.js从mysql数据库中删除值。但是现在,仅静态删除值,而不动态删除值。我想通过提供ID动态删除数据。
const server = http.createServer();
const reqUrl = url.parse(req.url, true);
server.on('request', (req, res) => {
if (reqUrl.pathname === '/delete'){
req.on('end', () => {
let sql = "Delete from students where id=12";
connection.query(sql, function (err, result) {
if (err) throw err;
console.log(result);
});
})
res.end();
}
});
现在,在运行这段代码localhost:3000/delete之后,只会始终删除id = 12。但是我想这样做localhost:3000/delete?id=12,以输入值作为id。
我尝试将sql命令指定为“从学生那里删除id =?” ,但它给出了错误。我该怎么解决?
答案 0 :(得分:2)
那应该很简单。
您只需要从请求中接收参数并将其附加到字符串即可。
这是您的更新代码。
server.on('request', (req, res) => {
if (reqUrl.pathname === '/delete'){
req.on('end', () => {
let studid = req.query.id; //Get the student id
let sql = "Delete from students where id="+studid; //append it to query
connection.query(sql, function (err, result) {
if (err) throw err;
console.log(result);
});
})
res.end();
}
});