我已经在 Angular 2 中集成了 payumoney 支付网关,但是当 payumoney 重定向到成功 url 时,我怎样才能获得交易 ID 和所有其他参数等参数?
我应该在成功 url 中正确地通过 payumoney 获取响应参数?我无法在 url 中看到参数,例如获取 url。
<form #f method="post" id="payu-payment-form" action="https://test.payu.in/_payment">
<input type="hidden" name="hash" value="{{hash}}"/>
<input type="hidden" name="key" value="{{marchentKey}}"/>
<input type="hidden" name="txnid" value="{{txnid}}"/>
<input type="hidden" name="amount" value="{{amount}}" />
<input type="hidden" name="productinfo" value="{{productinfo}}"/>
<input type="hidden" name="firstname" value="{{firstname}}" />
<input type="hidden" name="email" value="{{email}}" />
<input type="hidden" name="phone" value="{{phone}}" />
<input type="hidden" name="surl" value="http://example.net/payment"/>
<input type="hidden" name="furl" value="http://example.com/payment"/>
<input type="hidden" name="service_provider" value="" />
<button class="" type="submit" (click)="f.submit()" value="submit" formtarget="_blank" >Buy</button>
</form>
从 Angular 2 中的 url 获取 post 参数?