我正在尝试将PayUMoney与我的Angularjs 1.6应用程序集成,但它显示了
纠正措施
请注意,这是PayU的测试环境 - https://test.payu.in/_payment,但您使用的密钥(********)不是测试环境密钥。
我不知道我做错了什么
建议使用AngularJS-1.6
答案 0 :(得分:0)
这是我的工作代码。只写了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>
如果问题仍然存在,快速破解将在散列中产生一些错误并检查您是否收到错误消息。如果您收到哈希错误消息,那么您的代码就可以了。您需要确定您的密钥被覆盖的位置。
最好的方法是让您的表单可见并直观地查看数据。