How to read post parameters using JS/Jquery

前端 未结 3 521
一向
一向 2021-01-21 05:39

I have integrated a payment gateway with a Java based Web-App Now, After a successful and failure transaction, PG accordingly redirect to respectively html pages failure.html,su

3条回答
  •  离开以前
    2021-01-21 06:10

    Client side code has no access to most of the data in the request that was used to load the page the client side code is being executed in, including POST data.

    You'll need to use server side code instead.

提交回复
热议问题