说我有一个登录表单->
<form action="$_SERVER["PHP_SELF"]" method="POST">
<input...>
<input...>
</form>
将 PHP 与 Apache 一起使用时,我将通过此变量获取 POST 数据:$_POST["example"]
但是,我想使用它$_POST["example"]
来验证 Node.js 服务器上的用户。
所以用户不需要输入两次表格。
如何从 APACHE 获取 POST 数据到 Node.js 服务器?