如何浏览器提交Reactjs中的付款快递表格。 使用访存会给我CORS错误。根据文档,我必须提交如下所示的表格。
<form method="post" enctype="multipart/form-data" action="Insert href of rel:submitCard from create session">
<input type="text" name="CardNumber" minlength="14" maxlength="16" />
<input type="text" name="CardHolderName" maxlength="64"/>
<input type="text" name="ExpiryMonth" minlength="2" maxlength="2" />
<input type="text" name="ExpiryYear" minlength="2" maxlength="2" />
<input type="text" name="Cvc2" minlength="3" maxlength="4" />
<input type="submit" value="Submit" />
</form>
那里有人为了安全付款而这样做吗?