将表单发布到Meteor中的不同/外部域或URL

时间:2017-02-28 11:44:19

标签: javascript forms post meteor

我基本上想要使用支付服务提供商在我的Meteor应用程序中实施支付机制,但由于数据非常敏感,所以必须将信息发布在他们的网址中,并且他们要求将这些数据发布在他们的结尾。我可以在网上做到这一点,我被重定向到他们的页面,表格填写了成功呈现的卡片详细信息以及我发布的数据,但我不确定如何在移动应用程序本身。请帮忙。不讨厌。谢谢。

实际上这很简单:

payment.html

<form name="add-credit-card-form" id="add-credit-card-form" method="post" action="{{ postURL }}">
    <input type="hidden" name="paymentrequest" id="paymentrequest" value="hello">
    <input type="submit">
</form>

payment.js

// blocks of code that allows this code to be executed
$('#add-credit-card-form').submit();

0 个答案:

没有答案