node-mysqlquery返回undefined。这是我的代码:Hash.prototype.GetHash = function(){var test;var connection = this.config.CreateConnection();connection.connect(function(err){if (err)throw err;else{var query = "SELE
2013-02-22
我正在学习 nodejs 并使用“mysql”模块。使用此功能,我想验证数据库中是否已存在名称。我遇到了当前错误TypeError: Object #<Handshake> has no method 'query'我认为它与“this.query”有关,但找不到修复它的方法。代码var mysql = require('mysql');var conexao_bd = mysql.createC
2013-12-27