別のページにリダイレクトするには、response.writehead を使用する必要があります。SQLクエリでこれを行うにはどうすればよいですか。
これが私のコードです。
socket.on('login_check', function(email, pwd) {
connection.query("SELECT id,user_type FROM user WHERE email = '"+email+"' AND password = '"+pwd+"'ORDER BY name ",
function (error, results, fields) {
if (error) {
console.log(error);
}
if (results[0]) {
// some code
} else {
// Have to use response.writehead here. Please guide how to do this. If i use it here directly then it will give response is undefined error.
}
});
});