如何提交表单方法 = 发布到 Angular2 中的不同服务器



My Form 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 时,导航到回调组件。 但在这里它无法导航到显示无法开机自检/回调的回调组件。

我怎样才能在我的 angular2 回调组件中捕获帖子表单。

这是为像我这样的新手准备的:

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

相关内容

  • 没有找到相关文章

最新更新