Calling stored procedure from node js
问题 I am using express and I am trying to call LoginMember stored procedure from Azure portal. This is my form from, taken from ejs: <form method="post" action="/available-copies"> <input type="text" placeholder="SSN" name="userssn"> <input type="password" placeholder="Password" name="userpassword"> <input type="submit" value="Login"> </form> This is my post request router.post('/available-copies', function (req, res) { var ssn = req.body.userssn; var password = req.body.userpassword; sql.connect