如何在Angular2中将Form method = post提交给不同的服务器

时间:2017-06-19 14:32:20

标签: angular authentication angular2-services angular2-jwt

我的表格帖子

<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。但是在这里它无法导航到显示无法POST /回调的callbackComponent。

如何在angular2 CallbackComponent中捕获post表单。

1 个答案:

答案 0 :(得分:0)

这适合像我这样的新手:

为实现这一点,我编写了服务器端代码 - &gt; node.js(express)其中app.post(&#39; / callback&#39;)尽我所能并重定向到我的客户端。