[更新]增加微信支付测试

This commit is contained in:
Anyon 2018-05-03 14:50:43 +08:00
parent 977398a21e
commit 2f91b6082d
2 changed files with 49 additions and 0 deletions

View File

@ -14,7 +14,9 @@
namespace app\index\controller;
use service\WechatService;
use think\Controller;
use WeChat\Pay;
/**
* 应用入口控制器
@ -28,4 +30,48 @@ class Index extends Controller
$this->redirect('@admin/login');
}
public function pay()
{
$wechat = new Pay(config('wechat.'));
$options = [
'body' => '测试商品',
'out_trade_no' => time(),
'total_fee' => '1',
'openid' => 'o38gpszoJoC9oJYz3UHHf6bEp0Lo',
'trade_type' => 'JSAPI',
'notify_url' => 'http://a.com/text.html',
'spbill_create_ip' => '127.0.0.1',
];
// 生成预支付码
$result = $wechat->createOrder($options);
// 创建JSAPI参数签名
$options = $wechat->createParamsForJsApi($result['prepay_id']);
$optionJSON = json_encode($options, JSON_UNESCAPED_UNICODE);
$configJSON = json_encode(WechatService::webJsSDK(), JSON_UNESCAPED_UNICODE);
echo '<pre>';
echo "\n--- 创建预支付码 ---\n";
var_export($result);
echo '</pre>';
echo '<pre>';
echo "\n\n--- JSAPI 及 H5 参数 ---\n";
var_export($options);
echo '</pre>';
echo "<button id='paytest' type='button'>支付</button>";
echo "
<script src='//res.wx.qq.com/open/js/jweixin-1.2.0.js'></script>
<script>
wx.config($configJSON);
document.getElementById('paytest').onclick = function(){
var options = $optionJSON;
alert(JSON.stringify(options));
options.success = function(){
alert('支付成功');
}
wx.chooseWXPay(options);
}
</script>";
}
}

View File

@ -14,4 +14,7 @@
return [
'service_url' => 'https://service.thinkadmin.top',
'appid' => 'wx60a43dd8161666d4',
'mch_id' => '1332187001',
'mch_key' => 'A82DC5BD1F3359081049C568D8502BC5',
];