如何将 PayUMoney 与 AngularJS-1.6.4 集成

How to integrate PayUMoney with AngularJS-1.6.4

我正在尝试将 PayUMoney 与我的 Angularjs 1.6 应用程序集成,但它显示
纠正措施 请注意,这是 PayU 的测试环境 - https://test.payu.in/_payment ,但您使用的密钥 (********) 不是测试环境密钥。
我不知道我做错了什么。
建议我使用 AngularJS-1.6

的 PayUMoney 测试环境的适当解决方案

这是我的工作代码。仅在 2 天前写的。它在 Angular 2...检查您是否正确传递了参数。

<form ngNoForm cl  action="https://test.payu.in/_payment" method="POST" style="display:none">
  <input type="text" name="key" [value]="paymentInfo.hash_sequence.key" />
  <input  type="text" name="txnid" [value]="paymentInfo.hash_sequence.txnid"/>
  <input type ="text" name="amount"  [value]="paymentInfo.hash_sequence.amount"/>
  <input type="text" name="currency" value="paymentInfo.hash_sequence.currency" />
  <input  type="text" name="productinfo" [value]="paymentInfo.hash_sequence.productinfo" />
  <input type ="text" name="firstname"  [value]="paymentInfo.hash_sequence.firstname"/>
  <input type="text" name="email" [value]="paymentInfo.hash_sequence.email" />
  <input type ="text" name="phone"  [value]="paymentInfo.hash_sequence.mobile"/>
  <input type ="text" name="hash"  [value]="paymentInfo.hash"/>  
  <input type ="text" name="surl"  value="{{environment.api}}/payment/success"/>
  <input type ="text" name="furl"  value="{{environment.api}}/payment/failure"/>
  <input type ="text" name="curl"  value="{{environment.api}}/payment/cancel"/>
  <button id="get_payment" type="submit">Submit</button>
</form>

如果问题仍然存在,quick hack 将在哈希中产生一些错误并检查您是否收到错误消息。如果您收到散列错误消息,那么您的代码没有问题。您需要弄清楚您的密钥在哪里被覆盖。

最好的方法是使您的表单可见并直观地看到数据。