如果我的rowcount是o我需要在res上發送失敗。如果我的行數是 1我需要發送res狀態作爲成功。請幫助我。當我 試圖把打印(client.query)其未來的JSON(結果上 附圖片)當我的查詢結果rowCount爲0時如何在節點js中檢查響應拋出錯誤
var query = client.query("select * from pp_user_profile where email_id = '"+req.query.email_id+"' and user_password= '"+req.query.user_password+"'");
console.log(client.query);
query.on("end", function (result) {
if (result.length > 0) {
if (result)
console.log("Test:" + result);
res.write('Failed');
}
else{
console.log(result);
client.end();
res.writeHead(200, {'Content-Type': 'text/plain'});
res.write('Success');
res.end();
}
它的工作謝謝你 –