Tôi đã kết thúc chỉ sử dụng mysql.escape (val) bên trong truy vấn
app.mysql.query('INSERT INTO `files` (`torrentid`, `filename`, `filesize`) VALUES '+app.mysql.escape(torrentFiles), function(err, result)
CHỈNH SỬA
Cách khắc phục sự cố này là thêm put torrentFiles
trong []
. bây giờ là
app.mysql.query('INSERT INTO `files` (`torrentid`, `filename`, `filesize`) VALUES ? ', [torrentFiles], function(err, result)