支付宝支付插件支持异步返回

feat/task1-c-wallet
Devil 2021-05-16 16:21:31 +08:00
parent 46a12fabed
commit 1e9509f410
1 changed files with 11 additions and 1 deletions

View File

@ -244,8 +244,18 @@ class Alipay
// 生成签名参数+签名
$parameter['sign'] = $this->MyRsaSign($this->GetSignContent($parameter));
// 接口则直接返回
if(APPLICATION == 'app')
{
$result = [
'data' => $parameter,
'url' => 'https://openapi.alipay.com/gateway.do?charset=utf-8',
];
return DataReturn('success', 0, $result);
}
// 输出执行form表单post提交
// web端输出执行form表单post提交
exit($this->BuildRequestForm($parameter));
}