A应用页面,利用form post访问B应用(react spa),B应用如何接收参数?

  <form id="testForm" name="testForm"  action='http://localhost:3000/' method='post'>
        <input type="hidden" id="test1" name="test1" value='-test1'> 
        <input type="hidden" id="test2" name="test2" value='-test2'> 
        <input type="hidden" id="test3" name="test3" value='-test3'> 
  </form>

A系统以这样的方式来访问B系统(react spa),B系统如何接收请求以及获取参数信息?
我发现现在访问我的react spa应用只能用get方式访问,例如 form type=get,或者window.location.href=页面路径 、或者直接window.open,这样才能访问。
我如何可以接收post访问的方式?有没有好的办法?
或者有没有其他方式 使 A应用页面访问B应用页面?

js只能获取get提交的参数,post提交需要在服务器端获取