如何检索POST查询参数?

徘徊边缘 提交于 2020-04-27 20:55:25

问题:

Here is my simple form: 这是我的简单形式:

<form id="loginformA" action="userlogin" method="post">
    <div>
        <label for="email">Email: </label>
        <input type="text" id="email" name="email"></input>
    </div>
<input type="submit" value="Submit"></input>
</form>

Here is my Express.js /Node.js code: 这是我的Express.js /Node.js代码:

app.post('/userlogin', function(sReq, sRes){    
    var email = sReq.query.email.;   
}

I tried sReq.query.email or sReq.query['email'] or sReq.params['email'] , etc. None of them work. 我尝试了sReq.query.emailsReq.query['email']sReq.params['email']等。它们都不起作用。 They all return undefined . 他们都返回undefined

When I change to a Get call, it works, so .. any idea? 当我改为Get电话时,它有效,所以..任何想法?


解决方案:

参考一: https://stackoom.com/question/NxWY/如何检索POST查询参数
参考二: https://oldbug.net/q/NxWY/How-to-retrieve-POST-query-parameters
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!