2017-08-07 10 views
1

こんにちは、私は特急&パスポートを学んでいるがスローされます、私はMySQLを使用して行を挿入しようとしたとき、私はこのエラーを取得していますが、私のテーブルが適切に更新され、サインアップフォームを実行しようとしました。エクスプレスJSが再スロー非MySQLのエラーに

passport.use(
    'local-signup', 
    new LocalStrategy({ 
     usernameField : 'email', 
     passwordField : 'password', 
     passReqToCallback : true // allows us to pass back the entire request to the callback 
    }, 
    function(req, email, password, first_name, done) { 
     var displayName = req.body.first_name; 
     // find a user whose email is the same as the forms email 
     // we are checking to see if the user trying to login already exists 
     dbConnection.query("SELECT * FROM users WHERE email = ?",[email], function(err, rows) { 
     if (err) { 
      return done(err); 
     } 
     if (rows.length) { 
      return done(null, false, { error: 'That email is already being used.' }); 
     } else { 
      // if there is no user with that email 
      // create the user 
      var salt = bcrypt.genSaltSync(10); 
      var passwordHash = bcrypt.hashSync(password, salt); 

      var userInfo = { 
      email: email, 
      first_name: displayName 
      }; 

      var insertQuery = "INSERT INTO users (email, password, first_name) values ('"+email+"','"+passwordHash+"','"+displayName+"')"; 
      console.log(insertQuery); 
      dbConnection.query(insertQuery,function(err, rows) { 
      userInfo.id = rows.insertId; 
      console.log(rows); 
      return done(null, userInfo); 
      }); 
     } 
     }); 
    }) 
); 

Error of the code in console

答えて

1

必要はない機能にFIRST_NAMEパラメータを削除します。

function(req, email, password, first_name, done) 

'の代わりに'

function(req, email, password, done) 
関連する問題