如何提交表单方法 = post 到 Angular2 中的不同服务器
How to submit Form method = post to different server in Angular2
我的表格post
<html>
<head>
<title>Submit this form</title>
</head>
<body>
<form method="post" action="http://localhost:4200/callback">
<input type="hidden" name="access_token" value="eyJ0" />
<input type="hidden" name="token_type" value="Bearer" />
<input type="hidden" name="expires_in" value="3600" />
<input type="hidden" name="scope" value="read write" />
<input type="hidden" name="state" value="Ra7JV" />
</form>
</body>
</html>
并且每当 http://localhost:4200/callback 被调用时导航到 callbackComponent。但在这里它无法导航到 callbackComponent 显示 Cannot POST /callback.
如何在我的 angular2 CallbackComponent 中捕获 post 表单。
这是为像我这样的新手准备的:
为了实现这一点,我编写了服务器端代码 -> node.js(express),其中 app.post('/callback') 执行我的部分并重定向到我的客户端。
我的表格post
<html>
<head>
<title>Submit this form</title>
</head>
<body>
<form method="post" action="http://localhost:4200/callback">
<input type="hidden" name="access_token" value="eyJ0" />
<input type="hidden" name="token_type" value="Bearer" />
<input type="hidden" name="expires_in" value="3600" />
<input type="hidden" name="scope" value="read write" />
<input type="hidden" name="state" value="Ra7JV" />
</form>
</body>
</html>
并且每当 http://localhost:4200/callback 被调用时导航到 callbackComponent。但在这里它无法导航到 callbackComponent 显示 Cannot POST /callback.
如何在我的 angular2 CallbackComponent 中捕获 post 表单。
这是为像我这样的新手准备的:
为了实现这一点,我编写了服务器端代码 -> node.js(express),其中 app.post('/callback') 执行我的部分并重定向到我的客户端。