我正在构建服务器,并且想知道密钥是否在sql DB中。 我想知道是否有可能仅获得sql request的值,还是我需要解析它?
function checkKey(key) {
var sqlcheck = "SELECT customerID from authentification where discord_key =
?";
console.log("in function");
DB.query(sqlcheck, [key], function (err, result) {
if (err) throw err;
console.log(result);
});
}
这就是我得到的:
RowDataPacket { customerID: 'cus_ET5gXP7p7Tafmf' }
但是我只想得到:
cus_ET5gXP7p7Tafmf
谢谢您的帮助!
答案 0 :(得分:1)
通常
result[0].customerID
但是在您的示例中,它看起来像
result.customerID